Compare commits
3 Commits
d8f0e7e738
...
3f72d5fb43
| Author | SHA1 | Date |
|---|---|---|
|
|
3f72d5fb43 | |
|
|
8a4d5d9337 | |
|
|
b68a77144f |
|
|
@ -17,6 +17,8 @@ application/x-extension-xhtml=firefox.desktop;
|
|||
application/x-extension-xht=firefox.desktop;
|
||||
image/png=gimp.desktop;
|
||||
application/json=nvim.desktop;
|
||||
video/mp4=mpv.desktop;
|
||||
video/quicktime=mpv.desktop;
|
||||
|
||||
[Default Applications]
|
||||
application/x-extension-ics=userapp-Thunderbird-9ZNG41.desktop;
|
||||
|
|
@ -44,3 +46,5 @@ application/xhtml+xml=firefox.desktop
|
|||
application/x-extension-xhtml=firefox.desktop
|
||||
application/x-extension-xht=firefox.desktop
|
||||
application/json=nvim.desktop
|
||||
video/mp4=mpv.desktop
|
||||
video/quicktime=mpv.desktop
|
||||
|
|
|
|||
|
|
@ -7,13 +7,13 @@
|
|||
"clock",
|
||||
"custom/weather",
|
||||
"custom/pacman",
|
||||
"idle_inhibitor",
|
||||
"hyprland/submap"
|
||||
],
|
||||
"modules-center": [
|
||||
"wlr/workspaces"
|
||||
],
|
||||
"modules-right": [
|
||||
"idle_inhibitor",
|
||||
"hyprland/language",
|
||||
"pulseaudio",
|
||||
"tray"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
option="$(printf "⏻ Shutdown\n Reboot\n Suspend\n Hibernate" | \
|
||||
option="$(printf " Log out\n⏻ Shutdown\n Reboot\n Suspend\n Hibernate" | \
|
||||
wofi --dmenu -p "Session")"
|
||||
|
||||
dialogue_box() {
|
||||
|
|
@ -8,21 +8,26 @@ dialogue_box() {
|
|||
--text="$1"
|
||||
}
|
||||
|
||||
dialogue_box "Are you sure?" || exit 0
|
||||
|
||||
case $option in
|
||||
*Log\ out)
|
||||
pkill -u $USER
|
||||
;;
|
||||
*Shutdown)
|
||||
dialogue_box "Are you sure you want to shutdown this computer?" && \
|
||||
systemctl poweroff -i
|
||||
systemctl poweroff -i
|
||||
;;
|
||||
*Reboot)
|
||||
dialogue_box "Are you sure you want to reboot this computer?" && \
|
||||
systemctl reboot -i
|
||||
systemctl reboot -i
|
||||
;;
|
||||
*Suspend)
|
||||
dialogue_box "Are you sure you want to suspend this computer?" && \
|
||||
systemctl suspend -i
|
||||
~/.local/bin/scripts/system/screenlock &
|
||||
sleep 1
|
||||
systemctl suspend -i
|
||||
;;
|
||||
*Hibernate)
|
||||
dialogue_box "Are you sure you want to hibernate this computer?" && \
|
||||
systemctl hibernate -i
|
||||
~/.local/bin/scripts/system/screenlock &
|
||||
sleep 1
|
||||
systemctl hibernate -i
|
||||
;;
|
||||
esac
|
||||
|
|
|
|||
Loading…
Reference in New Issue