14 lines
354 B
Bash
Executable File
14 lines
354 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# blob:summary=Log out after closing application windows
|
|
# blob:examples=blob logout | blob system logout
|
|
# blob:aliases=blob logout
|
|
|
|
nohup bash -c "sleep 2 && uwsm stop" >/dev/null 2>&1 &
|
|
|
|
blob-osd -i logout -m "Logging out" -d 5000
|
|
|
|
# Now close all windows
|
|
blob-hypr-window-close-all
|
|
sleep 1 # Allow apps like Chrome to shutdown correctly
|