aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x1-setup.sh1
-rwxr-xr-x2-user.sh12
-rwxr-xr-x3-post-setup.sh27
3 files changed, 2 insertions, 38 deletions
diff --git a/1-setup.sh b/1-setup.sh
index 4921bde..35a1ecd 100755
--- a/1-setup.sh
+++ b/1-setup.sh
@@ -212,7 +212,6 @@ PKGS=(
'pulseaudio-bluetooth'
'python-pip'
'qemu'
-'qt5-xcb-private-headers'
'rsync'
'sddm-kcm'
'spectacle'
diff --git a/2-user.sh b/2-user.sh
index b0ac928..c3dafa0 100755
--- a/2-user.sh
+++ b/2-user.sh
@@ -46,24 +46,12 @@ PKGS=(
'ttf-meslo' # Nerdfont package
'ttf-roboto'
'zoom' # video conferences
-
)
for PKG in "${PKGS[@]}"; do
yay -S --noconfirm $PKG
done
-cat <<EOF >> /home/$(whoami)/.config/mpv/mpv.conf
-vo=vdpau
-profile=opengl-hq
-hwdec=vdpau
-hwdec-codecs=all
-scale=ewa_lanczossharp
-cscale=ewa_lanczossharp
-interpolation
-tscale=oversample
-EOF
-
export PATH=$PATH:~/.local/bin
cp -r $HOME/ArchTitus/dotfiles/* $HOME/.config/
pip install konsave
diff --git a/3-post-setup.sh b/3-post-setup.sh
index 92a2f17..58b4642 100755
--- a/3-post-setup.sh
+++ b/3-post-setup.sh
@@ -54,15 +54,6 @@ sudo sed -i 's|initramfs-linux.img|initramfs-linux-lts.img|g' /boot/loader/entri
# ------------------------------------------------------------------------
-echo -e "\nConfiguring vconsole.conf to set a larger font for login shell"
-
-sudo cat <<EOF > /etc/vconsole.conf
-KEYMAP=us
-FONT=ter-v16b
-EOF
-
-# ------------------------------------------------------------------------
-
echo -e "\nIncreasing file watcher count"
# This prevents a "too many files" error in Visual Studio Code
@@ -80,27 +71,13 @@ sudo sed -i 's|load-module module-esound-protocol-unix|#load-module module-esoun
echo -e "\nEnabling Login Display Manager"
-sudo systemctl enable --now sddm.service
-
+sudo systemctl enable sddm.service
echo -e "\nSetup SDDM Theme"
-sudo cat <<EOF > /etc/sddm.conf.d/kde_settings.conf
-[Autologin]
-Relogin=false
-Session=
-User=
-
-[General]
-HaltCommand=/usr/bin/systemctl poweroff
-RebootCommand=/usr/bin/systemctl reboot
-
+sudo cat <<EOF > /etc/sddm.conf
[Theme]
Current=Nordic
-
-[Users]
-MaximumUid=60513
-MinimumUid=1000
EOF
# ------------------------------------------------------------------------