mirror of
https://github.com/mrfluffy-dev/dotfiles.git
synced 2026-01-17 13:50:34 +00:00
first commit
This commit is contained in:
34
rofi/.config/rofi-menus/scripts/powermenu.sh
Executable file
34
rofi/.config/rofi-menus/scripts/powermenu.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
|
||||
rofi_command="rofi -theme themes/powermenu.rasi"
|
||||
|
||||
### Options ###
|
||||
power_off=""
|
||||
reboot=""
|
||||
lock=""
|
||||
suspend="鈴"
|
||||
log_out=""
|
||||
# Variable passed to rofi
|
||||
options="$power_off\n$reboot\n$lock\n$suspend\n$log_out"
|
||||
|
||||
chosen="$(echo -e "$options" | $rofi_command -dmenu -selected-row 2)"
|
||||
case $chosen in
|
||||
$power_off)
|
||||
promptmenu --yes-command "systemctl poweroff" --query "Shutdown?"
|
||||
;;
|
||||
$reboot)
|
||||
promptmenu --yes-command "systemctl reboot" --query "Reboot?"
|
||||
;;
|
||||
$lock)
|
||||
light-locker-command -l
|
||||
;;
|
||||
$suspend)
|
||||
mpc -q pause
|
||||
amixer set Master mute
|
||||
systemctl suspend
|
||||
;;
|
||||
$log_out)
|
||||
i3-msg exit
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user