From 4c8ebb3fffcdf10ba00a8beba47967cfc20011f0 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sun, 27 Aug 2023 01:42:25 -0500 Subject: moving files around, clearing scripts --- src/fonts/MesloLGS NF Bold Italic.ttf | Bin 1260156 -> 0 bytes src/fonts/MesloLGS NF Bold.ttf | Bin 1301900 -> 0 bytes src/fonts/MesloLGS NF Italic.ttf | Bin 1251424 -> 0 bytes src/fonts/MesloLGS NF Regular.ttf | Bin 1292408 -> 0 bytes src/fonts/MesloLGS/MesloLGS NF Bold Italic.ttf | Bin 0 -> 1260156 bytes src/fonts/MesloLGS/MesloLGS NF Bold.ttf | Bin 0 -> 1301900 bytes src/fonts/MesloLGS/MesloLGS NF Italic.ttf | Bin 0 -> 1251424 bytes src/fonts/MesloLGS/MesloLGS NF Regular.ttf | Bin 0 -> 1292408 bytes src/fonts/font-setup.sh | 6 --- src/fonts/fonts.sh | 6 +++ src/tools.sh | 9 ----- src/userChrome.css | 8 ---- src/wayland/tools.sh | 3 ++ src/xorg/conf/80-libinput.conf | 53 +++++++++++++++++++++++++ src/xorg/conf/userChrome.css | 8 ++++ src/xorg/tools.sh | 9 +++++ src/xorg/userChrome.css | 8 ++++ src/zsh-setup.sh | 14 ------- 18 files changed, 87 insertions(+), 37 deletions(-) delete mode 100644 src/fonts/MesloLGS NF Bold Italic.ttf delete mode 100644 src/fonts/MesloLGS NF Bold.ttf delete mode 100644 src/fonts/MesloLGS NF Italic.ttf delete mode 100644 src/fonts/MesloLGS NF Regular.ttf create mode 100644 src/fonts/MesloLGS/MesloLGS NF Bold Italic.ttf create mode 100644 src/fonts/MesloLGS/MesloLGS NF Bold.ttf create mode 100644 src/fonts/MesloLGS/MesloLGS NF Italic.ttf create mode 100644 src/fonts/MesloLGS/MesloLGS NF Regular.ttf delete mode 100755 src/fonts/font-setup.sh create mode 100755 src/fonts/fonts.sh delete mode 100755 src/tools.sh delete mode 100644 src/userChrome.css create mode 100755 src/wayland/tools.sh create mode 100644 src/xorg/conf/80-libinput.conf create mode 100644 src/xorg/conf/userChrome.css create mode 100755 src/xorg/tools.sh create mode 100644 src/xorg/userChrome.css delete mode 100755 src/zsh-setup.sh (limited to 'src') diff --git a/src/fonts/MesloLGS NF Bold Italic.ttf b/src/fonts/MesloLGS NF Bold Italic.ttf deleted file mode 100644 index be059c0..0000000 Binary files a/src/fonts/MesloLGS NF Bold Italic.ttf and /dev/null differ diff --git a/src/fonts/MesloLGS NF Bold.ttf b/src/fonts/MesloLGS NF Bold.ttf deleted file mode 100644 index 6142dd0..0000000 Binary files a/src/fonts/MesloLGS NF Bold.ttf and /dev/null differ diff --git a/src/fonts/MesloLGS NF Italic.ttf b/src/fonts/MesloLGS NF Italic.ttf deleted file mode 100644 index 90ca569..0000000 Binary files a/src/fonts/MesloLGS NF Italic.ttf and /dev/null differ diff --git a/src/fonts/MesloLGS NF Regular.ttf b/src/fonts/MesloLGS NF Regular.ttf deleted file mode 100644 index e9e4de5..0000000 Binary files a/src/fonts/MesloLGS NF Regular.ttf and /dev/null differ diff --git a/src/fonts/MesloLGS/MesloLGS NF Bold Italic.ttf b/src/fonts/MesloLGS/MesloLGS NF Bold Italic.ttf new file mode 100644 index 0000000..be059c0 Binary files /dev/null and b/src/fonts/MesloLGS/MesloLGS NF Bold Italic.ttf differ diff --git a/src/fonts/MesloLGS/MesloLGS NF Bold.ttf b/src/fonts/MesloLGS/MesloLGS NF Bold.ttf new file mode 100644 index 0000000..6142dd0 Binary files /dev/null and b/src/fonts/MesloLGS/MesloLGS NF Bold.ttf differ diff --git a/src/fonts/MesloLGS/MesloLGS NF Italic.ttf b/src/fonts/MesloLGS/MesloLGS NF Italic.ttf new file mode 100644 index 0000000..90ca569 Binary files /dev/null and b/src/fonts/MesloLGS/MesloLGS NF Italic.ttf differ diff --git a/src/fonts/MesloLGS/MesloLGS NF Regular.ttf b/src/fonts/MesloLGS/MesloLGS NF Regular.ttf new file mode 100644 index 0000000..e9e4de5 Binary files /dev/null and b/src/fonts/MesloLGS/MesloLGS NF Regular.ttf differ diff --git a/src/fonts/font-setup.sh b/src/fonts/font-setup.sh deleted file mode 100755 index 2bf02af..0000000 --- a/src/fonts/font-setup.sh +++ /dev/null @@ -1,6 +0,0 @@ -echo "Making fonts directory..." -mkdir -p ~/.local/share/fonts/ -p -echo "Moving Meslo fonts to ~/.local/share/fonts ..." -cp Meslo* ~/.local/share/fonts - -sudo ln -s /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d diff --git a/src/fonts/fonts.sh b/src/fonts/fonts.sh new file mode 100755 index 0000000..dd72e96 --- /dev/null +++ b/src/fonts/fonts.sh @@ -0,0 +1,6 @@ +echo "Making fonts directory..." +mkdir -p ~/.local/share/fonts/ -p +echo "Moving Meslo fonts to ~/.local/share/fonts ..." +cp ./MesloLGS/* ~/.local/share/fonts/ + +sudo ln -s /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d diff --git a/src/tools.sh b/src/tools.sh deleted file mode 100755 index c80bb34..0000000 --- a/src/tools.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -sudo pacman -S wine wine-mono winetricks dunst steam htop thunderbird bitwarden firefox xorg-server bspwm sxhkd polybar rofi picom git lightdm bluez pipewire pipewire-jack pipewire-alsa pipewire-pulse brightnessctl alacritty xfce-power-manager blueman lightdm-gtk-greeter arandr nitrogen lxapperance playerctl hyperland-git waybar - - -sudo xbps-install wine wine-mono winetricks dunst steam htop thunderbird bitwarden firefox xorg bspwm sxhkd polybar rofi picom git lightdm bluez pipewire brightnessctl alacritty xfce4-power-manager blueman lightdm-gtk3-greeter arandr nitrogen pcmanfm NetworkManager - - -sudo xbps-install wine-32bit void-repo-multilib{,-nonfree} legendary python3 python3-pip libgcc-32bit libstdc++-32bit libdrm-32bit libglvnd-32bit mesa-dri-32bit mesa-dri mesa-32bit diff --git a/src/userChrome.css b/src/userChrome.css deleted file mode 100644 index cbe4abc..0000000 --- a/src/userChrome.css +++ /dev/null @@ -1,8 +0,0 @@ -* { - font-size: 15px !important; -} -.toolbarbutton-badge { - font-size: 8px !important; -} - - diff --git a/src/wayland/tools.sh b/src/wayland/tools.sh new file mode 100755 index 0000000..db1a813 --- /dev/null +++ b/src/wayland/tools.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +sudo pacman -S wine wine-mono winetricks dunst steam btop thunderbird firefox rofi git bluez pipewire pipewire-jack pipewire-alsa pipewire-pulse brightnessctl alacritty bluetoothctl playerctl hyperland-git waybar diff --git a/src/xorg/conf/80-libinput.conf b/src/xorg/conf/80-libinput.conf new file mode 100644 index 0000000..12fa57b --- /dev/null +++ b/src/xorg/conf/80-libinput.conf @@ -0,0 +1,53 @@ +# Match on all types of devices but joysticks +# +# If you want to configure your devices, do not copy this file. +# Instead, use a config snippet that contains something like this: +# +# Section "InputClass" +# Identifier "something or other" +# MatchDriver "libinput" +# +# MatchIsTouchpad "on" +# ... other Match directives ... +# Option "someoption" "value" +# EndSection +# +# This applies the option any libinput device also matched by the other +# directives. See the xorg.conf(5) man page for more info on +# matching devices. + +Section "InputClass" + Identifier "libinput pointer catchall" + MatchIsPointer "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput keyboard catchall" + MatchIsKeyboard "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput touchpad catchall" + MatchIsTouchpad "on" + MatchDevicePath "/dev/input/event*" + Option "NaturalScrolling" "true" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput touchscreen catchall" + MatchIsTouchscreen "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput tablet catchall" + MatchIsTablet "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection diff --git a/src/xorg/conf/userChrome.css b/src/xorg/conf/userChrome.css new file mode 100644 index 0000000..cbe4abc --- /dev/null +++ b/src/xorg/conf/userChrome.css @@ -0,0 +1,8 @@ +* { + font-size: 15px !important; +} +.toolbarbutton-badge { + font-size: 8px !important; +} + + diff --git a/src/xorg/tools.sh b/src/xorg/tools.sh new file mode 100755 index 0000000..053ad0f --- /dev/null +++ b/src/xorg/tools.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +sudo pacman -S wine wine-mono winetricks dunst steam htop thunderbird firefox xorg-server bspwm sxhkd polybar rofi picom git lightdm bluez pipewire pipewire-jack pipewire-alsa pipewire-pulse brightnessctl alacritty xfce-power-manager blueman lightdm-gtk-greeter arandr nitrogen lxapperance playerctl + + +sudo xbps-install wine wine-mono winetricks dunst steam htop thunderbird bitwarden firefox xorg bspwm sxhkd polybar rofi picom git lightdm bluez pipewire brightnessctl alacritty xfce4-power-manager blueman lightdm-gtk3-greeter arandr nitrogen pcmanfm NetworkManager + + +sudo xbps-install wine-32bit void-repo-multilib{,-nonfree} legendary python3 python3-pip libgcc-32bit libstdc++-32bit libdrm-32bit libglvnd-32bit mesa-dri-32bit mesa-dri mesa-32bit diff --git a/src/xorg/userChrome.css b/src/xorg/userChrome.css new file mode 100644 index 0000000..cbe4abc --- /dev/null +++ b/src/xorg/userChrome.css @@ -0,0 +1,8 @@ +* { + font-size: 15px !important; +} +.toolbarbutton-badge { + font-size: 8px !important; +} + + diff --git a/src/zsh-setup.sh b/src/zsh-setup.sh deleted file mode 100755 index 5808e34..0000000 --- a/src/zsh-setup.sh +++ /dev/null @@ -1,14 +0,0 @@ -sudo pacman -S zsh - -sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" - -git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions - -git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting - -git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k - - git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim - - -cp .zshrc .p10k ~/ -- cgit