More fixes

This commit is contained in:
Drew Galbraith 2023-11-17 19:57:26 -08:00
parent 51b067a85d
commit 47b3ec9f70
2 changed files with 7 additions and 5 deletions

View File

@ -28,7 +28,6 @@ echo "Enabling SDDM"
systemctl enable sddm
mkdir /etc/sddm.conf.d
cp sddm.conf /etc/sddm.conf.d/sddm.conf
sed -i 's/ForceHideCompletePassword=false/ForceHideCompletePassword=true/' /usr/share/sddm/themes/sugar-dark/theme.conf
echo "Giving Sway hardware access."
usermod -aG seat drew

11
install_usr.sh Normal file → Executable file
View File

@ -1,3 +1,5 @@
#! /bin/bash
set -e
echo "Installing yay"
mkdir opt
@ -5,20 +7,19 @@ pushd opt
git clone https://aur.archlinux.org/yay.git
chown -R drew .
pushd yay
su -c "makepkg -s" drew
pacman -U *.tar.zst
makepkg -si
popd
popd
echo "Installing plymouth theme"
su -c "yay -S plymouth-theme-deus-ex-git" drew
yay -S plymouth-theme-deus-ex-git
plymouth-set-default-theme -R deus_ex
echo "Installing SDDM theme"
yay -S sddm-sugar-dark
echo "Pulling home git config"
$CONFIG='/usr/bin/git --git-dir=/home/drew/.cfg/ --work-tree=/home/drew'
$CONFIG="/usr/bin/git --git-dir=/home/drew/.cfg/ --work-tree=/home/drew"
git config --global init.defaultBranch main
mkdir ~/.cfg
$CONFIG init
@ -26,3 +27,5 @@ $CONFIG remote add origin https://gitlab.com/dgalbraith33/dotfiles.git
$CONFIG pull origin main
$CONFIG submodule update --init
echo "*" > ~/.gitignore
sed -i 's/ForceHideCompletePassword=false/ForceHideCompletePassword=true/' /usr/share/sddm/themes/sugar-dark/theme.conf