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/xorg/conf/80-libinput.conf | 53 ++++++++++++++++++++++++++++++++++++++++++ src/xorg/conf/userChrome.css | 8 +++++++ src/xorg/tools.sh | 9 +++++++ src/xorg/userChrome.css | 8 +++++++ 4 files changed, 78 insertions(+) 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 (limited to 'src/xorg') 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; +} + + -- cgit