Skip to content

Instantly share code, notes, and snippets.

View sephid86's full-sized avatar

시티에이스 sephid86

  • Republic Korea. Seoul
View GitHub Profile
@mxdevmanuel
mxdevmanuel / powermenu.sh
Created July 30, 2021 18:45
Sway power menu
#!/usr/bin/env bash
op=$( echo -e " Poweroff\n Reboot\n Suspend\n Lock\n Logout" | wofi -i --dmenu | awk '{print tolower($2)}' )
case $op in
poweroff)
;&
reboot)
;&
suspend)