diff options
| author | srdusr <trevorgray@srdusr.com> | 2025-10-01 17:21:05 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2025-10-01 17:21:05 +0200 |
| commit | afe53c73bfd21a2931afccae9ea0bcfbfd4a9405 (patch) | |
| tree | ad83f1a6da18ed04808040ce1eff4b7d878d1ede /linux/home/.scripts/powermenu | |
| parent | a1c6c0e20541575e57660d771b8a948d558648d1 (diff) | |
| download | dotfiles-afe53c73bfd21a2931afccae9ea0bcfbfd4a9405.tar.gz dotfiles-afe53c73bfd21a2931afccae9ea0bcfbfd4a9405.zip | |
Testing updated dir structures
Diffstat (limited to 'linux/home/.scripts/powermenu')
| -rwxr-xr-x | linux/home/.scripts/powermenu | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/linux/home/.scripts/powermenu b/linux/home/.scripts/powermenu deleted file mode 100755 index 7bd913e..0000000 --- a/linux/home/.scripts/powermenu +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -# display a power menu to: shutdown, reboot, -# lock, logout, and suspend. This script can be -# executed by clicking on the polybar powermenu module -# or with a keyboard shortcut - -# options to be displayed -shutdown=" Shutdown" -reboot=" Reboot" -lock=" Lock" -logout=" Logout" -suspend=" Suspend" - -uptime=$(uptime -p | sed -e 's/up //g') - -# options passed into variable -options="$shutdown\n$reboot\n$lock\n$logout\n$suspend" - -chosen="$(echo -e "$options" | rofi -theme ~/.config/rofi/styles/powermenu.rasi -lines 5 -dmenu -p "$uptime")" - -case $chosen in -$shutdown) - systemctl poweroff - ;; -$reboot) - systemctl reboot - ;; -$lock) - betterlockscreen --lock dimblur - ;; -$logout) - bspc quit - ;; -$suspend) - systemctl suspend - ;; -esac |
