You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
364 B
28 lines
364 B
#!/usr/bin/sh |
|
selection=$( \ |
|
echo -e "Lock\nLogout\nSuspend\nHibernate\nReboot\nShutdown" |\ |
|
rofi -dmenu -i -p 'Option'); |
|
echo $selection; |
|
|
|
sleep .2 |
|
|
|
case $selection in |
|
Lock) |
|
i3exit lock |
|
;; |
|
Logout) |
|
i3exit logout |
|
;; |
|
Suspend) |
|
i3exit suspend |
|
;; |
|
Hibernate) |
|
i3exit hibernate |
|
;; |
|
Reboot) |
|
i3exit reboot |
|
;; |
|
Shutdown) |
|
i3exit shutdown |
|
;; |
|
esac
|
|
|