aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2023-08-27 01:42:25 -0500
committerAaditya Dhruv <[email protected]>2023-08-27 01:42:25 -0500
commit4c8ebb3fffcdf10ba00a8beba47967cfc20011f0 (patch)
tree052afc3265a6b246bce0314f4add1adafd026640 /src
parent598dc8dc0b06b13da8c4e2824dcff7d55a26fbf0 (diff)
moving files around, clearing scripts
Diffstat (limited to 'src')
-rw-r--r--src/fonts/MesloLGS/MesloLGS NF Bold Italic.ttf (renamed from src/fonts/MesloLGS NF Bold Italic.ttf)bin1260156 -> 1260156 bytes
-rw-r--r--src/fonts/MesloLGS/MesloLGS NF Bold.ttf (renamed from src/fonts/MesloLGS NF Bold.ttf)bin1301900 -> 1301900 bytes
-rw-r--r--src/fonts/MesloLGS/MesloLGS NF Italic.ttf (renamed from src/fonts/MesloLGS NF Italic.ttf)bin1251424 -> 1251424 bytes
-rw-r--r--src/fonts/MesloLGS/MesloLGS NF Regular.ttf (renamed from src/fonts/MesloLGS NF Regular.ttf)bin1292408 -> 1292408 bytes
-rwxr-xr-xsrc/fonts/fonts.sh (renamed from src/fonts/font-setup.sh)2
-rwxr-xr-xsrc/wayland/tools.sh3
-rw-r--r--src/xorg/conf/80-libinput.conf53
-rw-r--r--src/xorg/conf/userChrome.css (renamed from src/userChrome.css)0
-rwxr-xr-xsrc/xorg/tools.sh (renamed from src/tools.sh)2
-rw-r--r--src/xorg/userChrome.css8
-rwxr-xr-xsrc/zsh-setup.sh14
11 files changed, 66 insertions, 16 deletions
diff --git a/src/fonts/MesloLGS NF Bold Italic.ttf b/src/fonts/MesloLGS/MesloLGS NF Bold Italic.ttf
index be059c0..be059c0 100644
--- a/src/fonts/MesloLGS NF Bold Italic.ttf
+++ b/src/fonts/MesloLGS/MesloLGS NF Bold Italic.ttf
Binary files differ
diff --git a/src/fonts/MesloLGS NF Bold.ttf b/src/fonts/MesloLGS/MesloLGS NF Bold.ttf
index 6142dd0..6142dd0 100644
--- a/src/fonts/MesloLGS NF Bold.ttf
+++ b/src/fonts/MesloLGS/MesloLGS NF Bold.ttf
Binary files differ
diff --git a/src/fonts/MesloLGS NF Italic.ttf b/src/fonts/MesloLGS/MesloLGS NF Italic.ttf
index 90ca569..90ca569 100644
--- a/src/fonts/MesloLGS NF Italic.ttf
+++ b/src/fonts/MesloLGS/MesloLGS NF Italic.ttf
Binary files differ
diff --git a/src/fonts/MesloLGS NF Regular.ttf b/src/fonts/MesloLGS/MesloLGS NF Regular.ttf
index e9e4de5..e9e4de5 100644
--- a/src/fonts/MesloLGS NF Regular.ttf
+++ b/src/fonts/MesloLGS/MesloLGS NF Regular.ttf
Binary files differ
diff --git a/src/fonts/font-setup.sh b/src/fonts/fonts.sh
index 2bf02af..dd72e96 100755
--- a/src/fonts/font-setup.sh
+++ b/src/fonts/fonts.sh
@@ -1,6 +1,6 @@
echo "Making fonts directory..."
mkdir -p ~/.local/share/fonts/ -p
echo "Moving Meslo fonts to ~/.local/share/fonts ..."
-cp Meslo* ~/.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/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/userChrome.css b/src/xorg/conf/userChrome.css
index cbe4abc..cbe4abc 100644
--- a/src/userChrome.css
+++ b/src/xorg/conf/userChrome.css
diff --git a/src/tools.sh b/src/xorg/tools.sh
index c80bb34..053ad0f 100755
--- a/src/tools.sh
+++ b/src/xorg/tools.sh
@@ -1,6 +1,6 @@
#!/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 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
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 ~/