Merge branch 'master' of git.opal.sh:opal/opalfiles
This commit is contained in:
@@ -13,6 +13,8 @@
|
|||||||
(setq user-full-name "opal"
|
(setq user-full-name "opal"
|
||||||
user-mail-address "ry.orlando@proton.me")
|
user-mail-address "ry.orlando@proton.me")
|
||||||
|
|
||||||
|
(setq vterm-shell "/bin/zsh")
|
||||||
|
|
||||||
;; Theme & background color
|
;; Theme & background color
|
||||||
(load-theme 'doom-gruvbox t)
|
(load-theme 'doom-gruvbox t)
|
||||||
;;(set-face-background 'default "#E8D8B0")
|
;;(set-face-background 'default "#E8D8B0")
|
||||||
|
|||||||
@@ -145,10 +145,6 @@ input {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gestures {
|
|
||||||
workspace_swipe = false
|
|
||||||
}
|
|
||||||
|
|
||||||
device {
|
device {
|
||||||
name = epic-mouse-v1
|
name = epic-mouse-v1
|
||||||
sensitivity = -0.5
|
sensitivity = -0.5
|
||||||
@@ -285,3 +281,8 @@ windowrulev2 = suppressevent maximize, class:.*
|
|||||||
|
|
||||||
# Fix some dragging issues with XWayland
|
# Fix some dragging issues with XWayland
|
||||||
windowrulev2 = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
|
windowrulev2 = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
|
||||||
|
|
||||||
|
xwayland {
|
||||||
|
force_zero_scaling = true
|
||||||
|
use_nearest_neighbor = true
|
||||||
|
}
|
||||||
|
|||||||
4
.config/hypr/monitors.conf
Normal file
4
.config/hypr/monitors.conf
Normal 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
|
||||||
0
.config/hypr/workspaces.conf
Normal file
0
.config/hypr/workspaces.conf
Normal file
2156
.config/zsh/.zcompdump
Normal file
2156
.config/zsh/.zcompdump
Normal file
File diff suppressed because it is too large
Load Diff
@@ -3,6 +3,8 @@
|
|||||||
#######################################################
|
#######################################################
|
||||||
|
|
||||||
setopt HIST_VERIFY # Confirm !! and similar before executing
|
setopt HIST_VERIFY # Confirm !! and similar before executing
|
||||||
|
autoload -Uz compinit
|
||||||
|
compinit
|
||||||
|
|
||||||
export PATH="$PATH:$HOME/.local/bin"
|
export PATH="$PATH:$HOME/.local/bin"
|
||||||
|
|
||||||
@@ -110,6 +112,22 @@ alias ncmpcpp='ncmpcpp -b ~/.config/ncmpcpp/bindings'
|
|||||||
alias ll='ls -l --color=auto'
|
alias ll='ls -l --color=auto'
|
||||||
alias la='ls -la --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
|
# KEYBINDS
|
||||||
#######################################################
|
#######################################################
|
||||||
|
|||||||
Reference in New Issue
Block a user