diff options
author | Saumit <justsaumit@protonmail.com> | 2024-08-25 12:28:43 +0530 |
---|---|---|
committer | Saumit <justsaumit@protonmail.com> | 2024-08-25 12:28:43 +0530 |
commit | 7c7c5bf4488a193322ace6861ac2aaee194b34fc (patch) | |
tree | 3c76220d63a683502dd858d2e8e98c84dd8d9b37 /arch-magik.sh | |
parent | 7e5aa75f70a7e06725d30c249685f27b5eee215f (diff) |
noto fonts addition
Diffstat (limited to 'arch-magik.sh')
-rwxr-xr-x | arch-magik.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch-magik.sh b/arch-magik.sh index e66223a..b336e75 100755 --- a/arch-magik.sh +++ b/arch-magik.sh @@ -173,6 +173,13 @@ sudo mkdir -pv /etc/X11/xorg.conf.d/ /etc/udev/rules.d/ sudo cp $HOME/.dotfiles/etc/X11/xorg.conf.d/30-touchpad.conf /etc/X11/xorg.conf.d/30-touchpad.conf sudo cp $HOME/.dotfiles/etc/udev/rules.d/90-backlight.rules /etc/udev/rules.d/90-backlight.rules && +# Add noto fonts +read -p "Do you wish to add noto fonts? [y/n]" answer +if [[ $answer = y ]] ; then + yay -S $virt + sudo pacman -S $(pacman -Ssq noto-fonts) +fi + #XDG Clean up mkdir -pv $HOME/.config/wget && touch $HOME/.config/wget/wgetrc mkdir -pv $HOME/.config/gtk-2.0 && touch $HOME/.config/gtk-2.0/gtkrc-2.0 |