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 systemctl enable sddm
mkdir /etc/sddm.conf.d mkdir /etc/sddm.conf.d
cp sddm.conf /etc/sddm.conf.d/sddm.conf 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." echo "Giving Sway hardware access."
usermod -aG seat drew 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" echo "Installing yay"
mkdir opt mkdir opt
@ -5,20 +7,19 @@ pushd opt
git clone https://aur.archlinux.org/yay.git git clone https://aur.archlinux.org/yay.git
chown -R drew . chown -R drew .
pushd yay pushd yay
su -c "makepkg -s" drew makepkg -si
pacman -U *.tar.zst
popd popd
popd popd
echo "Installing plymouth theme" 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 plymouth-set-default-theme -R deus_ex
echo "Installing SDDM theme" echo "Installing SDDM theme"
yay -S sddm-sugar-dark yay -S sddm-sugar-dark
echo "Pulling home git config" 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 git config --global init.defaultBranch main
mkdir ~/.cfg mkdir ~/.cfg
$CONFIG init $CONFIG init
@ -26,3 +27,5 @@ $CONFIG remote add origin https://gitlab.com/dgalbraith33/dotfiles.git
$CONFIG pull origin main $CONFIG pull origin main
$CONFIG submodule update --init $CONFIG submodule update --init
echo "*" > ~/.gitignore echo "*" > ~/.gitignore
sed -i 's/ForceHideCompletePassword=false/ForceHideCompletePassword=true/' /usr/share/sddm/themes/sugar-dark/theme.conf