big fixes

This commit is contained in:
Chris Titus 2021-10-21 23:15:55 -05:00
parent dd2c035f8e
commit 0136a883f0
3 changed files with 2 additions and 38 deletions

View File

@ -212,7 +212,6 @@ PKGS=(
'pulseaudio-bluetooth'
'python-pip'
'qemu'
'qt5-xcb-private-headers'
'rsync'
'sddm-kcm'
'spectacle'

View File

@ -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

View File

@ -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
# ------------------------------------------------------------------------