Merge branch 'master' of git.opal.sh:opal/opalfiles

This commit is contained in:
2025-10-14 19:56:00 -07:00
6 changed files with 2185 additions and 4 deletions

View File

@@ -13,6 +13,8 @@
(setq user-full-name "opal"
user-mail-address "ry.orlando@proton.me")
(setq vterm-shell "/bin/zsh")
;; Theme & background color
(load-theme 'doom-gruvbox t)
;;(set-face-background 'default "#E8D8B0")

View File

@@ -145,10 +145,6 @@ input {
}
}
gestures {
workspace_swipe = false
}
device {
name = epic-mouse-v1
sensitivity = -0.5
@@ -285,3 +281,8 @@ windowrulev2 = suppressevent maximize, class:.*
# Fix some dragging issues with XWayland
windowrulev2 = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
xwayland {
force_zero_scaling = true
use_nearest_neighbor = true
}

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

2156
.config/zsh/.zcompdump Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,8 @@
#######################################################
setopt HIST_VERIFY # Confirm !! and similar before executing
autoload -Uz compinit
compinit
export PATH="$PATH:$HOME/.local/bin"
@@ -110,6 +112,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
#######################################################