This commit is contained in:
2026-04-01 20:37:45 +01:00
parent 2e83db4b69
commit ab9854d12f
6 changed files with 8 additions and 17 deletions

View File

@@ -64,12 +64,6 @@ bindd = SUPER, J, Move window focus down, movefocus, d
bindd = SUPER, S, Toggle scratchpad, togglespecialworkspace, scratchpad
bindd = SUPER ALT, S, Move window to scratchpad, movetoworkspacesilent, special:scratchpad
# Swap active window with the one next to it with SUPER + SHIFT + arrow keys
bindd = SUPER SHIFT, LEFT, Swap window to the left, swapwindow, l
bindd = SUPER SHIFT, RIGHT, Swap window to the right, swapwindow, r
bindd = SUPER SHIFT, UP, Swap window up, swapwindow, u
bindd = SUPER SHIFT, DOWN, Swap window down, swapwindow, d
# Cycle through applications on active workspace
bindd = SUPER, TAB, Cycle to next window, cyclenext, visible
bindd = SUPER SHIFT, TAB, Cycle to prev window, cyclenext, visible prev
@@ -186,7 +180,7 @@ bindd = SUPER CTRL, L, Lock system, exec, station-lock-screen
# ==========================
# Applications
# ==========================
bindd = SUPER, RETURN, Terminal, exec, uwsm-app -- xdg-terminal-exec --dir="$(station-cmd-terminal-cwd)"
bindd = SUPER, RETURN, Terminal, exec, uwsm-app -- xdg-terminal-exec
bindd = SUPER ALT, RETURN, Tmux, exec, uwsm-app -- xdg-terminal-exec --dir="$(station-cmd-terminal-cwd)" tmux new
bindd = SUPER SHIFT, F, File manager, exec, uwsm-app -- nautilus --new-window
bindd = SUPER ALT SHIFT, F, File manager (cwd), exec, uwsm-app -- nautilus --new-window "$(station-cmd-terminal-cwd)"

View File

@@ -23,6 +23,6 @@ listener {
listener {
timeout = 330 # 5.5min
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed
on-timeout = station-system-suspend # suspend when timeout has passed
on-resume = hyprctl dispatch dpms on && brightnessctl -r # screen on when activity is detected
}

View File

@@ -89,10 +89,6 @@ alias \
notes="cd ~/Tower/Notes && nvim ." \
aid="aider"
# Projects
alias \
src="tmuxinator start runcats"
# Dev
alias \
sail='[ -f sail ] && sh sail || sh vendor/bin/sail' \

View File

@@ -81,7 +81,6 @@ bind-key -n User0 send-keys C-S-o
bind-key -n User0 send-keys C-S-y
bind-key -n User0 send-keys C-S-a
# Prefix
set -g prefix C-Space
set -g prefix2 C-b
@@ -106,7 +105,7 @@ bind -n C-M-S-Right resize-pane -R 5
# Window navigation
bind r command-prompt -I "#W" "rename-window -- '%%'"
bind c new-window -c "#{pane_current_path}"
bind k kill-window
bind x kill-window
bind -n M-1 select-window -t 1
bind -n M-2 select-window -t 2
@@ -126,7 +125,7 @@ bind -n M-S-Right swap-window -t +1 \; select-window -t +1
# Session controls
bind R command-prompt -I "#S" "rename-session -- '%%'"
bind C new-session -c "#{pane_current_path}"
bind K kill-session
bind X kill-session
bind P switch-client -p
bind N switch-client -n

View File

@@ -4,12 +4,12 @@
# Ensure elephant is running before launching walker
if ! pgrep -x elephant > /dev/null; then
setsid uwsm-app -- elephant &
setsid uwsm-app -- elephant > /dev/null 2>&1 &
fi
# Ensure walker service is running
if ! pgrep -f "walker --gapplication-service" > /dev/null; then
setsid uwsm-app -- walker --gapplication-service &
setsid uwsm-app -- walker --gapplication-service > /dev/null 2>&1 &
fi
exec walker --width 644 --maxheight 300 --minheight 300 "$@"

View File

@@ -236,6 +236,7 @@ show_system_menu() {
local options="󱄄 Screensaver\n Lock\n󰒲 Suspend"
station-hibernation-available && options="$options\n󰤁 Hibernate"
options="$options\n󰍃 Logout\n󰜉 Restart\n󰐥 Shutdown"
echo $options
case $(menu "System" "$options") in
*Screensaver*) station-launch-screensaver force ;;
@@ -257,6 +258,7 @@ go_to_menu() {
case "${1,,}" in
*apps*) walker -p "Launch…" ;;
*trigger*) show_trigger_menu ;;
*share*) show_share_menu ;;
*background*) show_background_menu ;;
*setup*) show_setup_menu ;;
*update*) show_update_menu ;;