This commit is contained in:
2025-09-29 11:50:02 -07:00
parent fdb4242e9d
commit a657b75d7e
4 changed files with 20 additions and 4 deletions

View File

@@ -145,10 +145,6 @@ input {
}
}
gestures {
workspace_swipe = false
}
device {
name = epic-mouse-v1
sensitivity = -0.5

View File

@@ -0,0 +1,4 @@
# Generated by nwg-displays on 2025-08-26 at 17:57:03. Do not edit manually.
monitor=DP-2,2560x2880@59.98,2560x0,1.6
monitor=HDMI-A-1,3840x2160@60.0,0x0,1.5

View File

View File

@@ -104,6 +104,22 @@ alias ncmpcpp='ncmpcpp -b ~/.config/ncmpcpp/bindings'
alias ll='ls -l --color=auto'
alias la='ls -la --color=auto'
#######################################################
# FUNCTIONS
#######################################################
# Reset all USB devices after suspend/hibernate if they vanish
usbreset() {
echo "Re-authorizing all USB devices..."
for d in /sys/bus/usb/devices/*/authorized; do
if [[ -w $d ]]; then
echo 0 | sudo tee "$d" >/dev/null
echo 1 | sudo tee "$d" >/dev/null
fi
done
echo "Done. Check with lsusb."
}
#######################################################
# KEYBINDS
#######################################################