Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LfqzqpU1T6pQRsmpbGxBs5
14 lines
382 B
Bash
Executable File
14 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Log out after closing application windows
|
|
# omarchy:examples=omarchy logout | omarchy system logout
|
|
# omarchy:aliases=omarchy logout
|
|
|
|
nohup bash -c "sleep 2 && uwsm stop" >/dev/null 2>&1 &
|
|
|
|
omarchy-osd -i logout -m "Logging out" -d 5000
|
|
|
|
# Now close all windows
|
|
omarchy-hyprland-window-close-all
|
|
sleep 1 # Allow apps like Chrome to shutdown correctly
|