diff --git a/.SpaceVim.d/init.toml b/.SpaceVim.d/init.toml index d7f2550..3571fff 100644 --- a/.SpaceVim.d/init.toml +++ b/.SpaceVim.d/init.toml @@ -33,7 +33,6 @@ enable_filetree_gitstatus = true filemanager = "nerdtree" - bootstrap_before = "myspacevim#before" windows_leader = '' diff --git a/.Xresources##class.arch_laptop b/.Xresources##class.arch_laptop index 8d4c3cd..72a4471 100644 --- a/.Xresources##class.arch_laptop +++ b/.Xresources##class.arch_laptop @@ -1,7 +1 @@ -xterm*faceName: MesloLGS NF -xterm*faceSize: 13 - Xft.dpi: 192 - -xscreensaver.newLoginCommand: lxdm -c USER_SWITCH - diff --git a/.config/polybar/modules.ini##class.arch_laptop b/.config/polybar/modules.ini##class.arch_laptop index 81738fe..b67e4f2 100644 --- a/.config/polybar/modules.ini##class.arch_laptop +++ b/.config/polybar/modules.ini##class.arch_laptop @@ -778,12 +778,12 @@ interface = eth0 [module/wireless-network] type = internal/network -interface = wlp3s0 +interface = wlan0 ; Normal Module [module/network] type = internal/network -interface = wlp0s20f3 +interface = wlan0 click-left = brave ; Seconds to sleep between updates diff --git a/.setup/config/resources/30-touchpad.conf b/.setup/config/resources/30-touchpad.conf new file mode 100644 index 0000000..b3aea8d --- /dev/null +++ b/.setup/config/resources/30-touchpad.conf @@ -0,0 +1,9 @@ +Section "InputClass" + Identifier "touchpad" + Driver "libinput" + MatchIsTouchpad "on" + Option "Tapping" "on" + Option "TappingButtonMap" "lrm" + Option "NaturalScrolling" "true" + Option "ClickMethod" "clickfinger" +EndSection diff --git a/.setup/config/setup_touchpad.sh b/.setup/config/setup_touchpad.sh new file mode 100755 index 0000000..c03c1dd --- /dev/null +++ b/.setup/config/setup_touchpad.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +config_file_name="30-touchpad.conf" +config_folder="/etc/X11/xorg.conf.d/" +resources_folder="$(dirname "$0")/resources" + + +if [ ! -f "$config_folder/$config_file_name" ]; then + if [ -f "$resources_folder/$config_file_name" ]; then + cp "$resources_folder/$config_file_name" "$config_folder/$config_file_name" + if [ -f "$config_folder/$config_file_name" ]; then + echo "File copied successfully." + else + echo "Error copying file" + fi + else + echo "Error: Resource file not found." + fi +else + echo "File already exists." +fi + diff --git a/.xprofile##class.arch_laptop b/.xprofile##class.arch_laptop index 6750eea..025227a 100644 --- a/.xprofile##class.arch_laptop +++ b/.xprofile##class.arch_laptop @@ -8,7 +8,11 @@ export MESA_LOADER_DRIVER_OVERRIDE=i965 (sleep 5 && xset dpms 300 300 300) & -xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/logind-handle-lid-switch -n -t bool -s true -xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/logind-handle-power-key -n -t bool -s true +xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/logind-handle-lid-switch -n -t bool -s true & +xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/logind-handle-power-key -n -t bool -s true & +export ESPIDF=/opt/esp-idf & -export ESPIDF=/opt/esp-idf + +/usr/bin/pipewire & +/usr/bin/pipewire-pulse & +/usr/bin/wireplumber &