all repos — zenUtils @ main

misc utilities for computing zen

logout.sh (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/sh

# logout.sh
# logout dialogue to be used with a tint2 executor
# no arguments prints the power icon with siji font
# -p runs the prompt in dmenu
# use a sudoers rule with NOPASSWD or a session manager
# Derek Stevens <nilix@nilfm.cc>
# MIT License

menu() {
  dmenu "$@" -p "action >>>" -fn saucecodepronerdfont-9 -l 6 -nb black -nf "#c9c9c9" -sb "#1f9b92" -sf black
  }


printopts() {
  printf "shutdown\nreboot\nsuspend\nlogout"
}

handler() {
  case $1 in
    shutdown)
      poweroff
      ;;
    reboot)
      reboot
      ;;
    suspend)
      zzz
      ;;
    logout)
#      if pgrep sddm-helper; then
#        killall sddm-helper
#      elif pgrep ryudo; then
#        killall ryudo
#      else
#        killall fluxbox
#      fi
      killall Xorg
      ;;
    hibernate)
      ZZZ
      ;;
    *)
      :
  esac
}

logoutMenu() {
  cmd=$(printopts | menu)
  handler $cmd
}

if [ -z $1 ]; then
  echo ""
  
elif [ "$1" = "-p" ]; then
  logoutMenu
fi