]> danix's work - my-dotfiles.git/blame - home-bin/i3-exit
added mail script to polybar
[my-dotfiles.git] / home-bin / i3-exit
CommitLineData
45a360f5 1#!/bin/bash
2rofi_command="rofi -theme darknix/i3exit.rasi"
3
afe46901 4NO=""
45a360f5 5YES=""
6
7options="$YES\n$NO"
8chosen="$(echo -e "$options" | $rofi_command -dmenu -selected-row 1)"
9case $chosen in
10 "$YES")
afe46901 11 # exit i3
45a360f5 12 i3-msg exit
13 ;;
14 "$NO")
afe46901 15 # do nothing
45a360f5 16 exit 0
17 ;;
18esac