]> git.sev.monster Git - dotfiles.git/blob - bin/tint2-i3mode
remove tint2 battery alert, zsh dotfiles vcs check
[dotfiles.git] / bin / tint2-i3mode
1 #!/bin/sh
2 first=true
3 i3subscribe mode | while read -r x; do
4         if $first; then
5                 first=false
6                 continue
7         fi
8         x=${x#mode:}
9         case $x in
10                 default) echo;;
11                 *) echo $x;;
12         esac
13 done
This page took 0.046163 seconds and 4 git commands to generate.