summaryrefslogtreecommitdiff
path: root/.config/i3/run_i3_status.sh~
blob: a7bbaa70d033673a464d4ab4a7327dbaa5b3b841 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
# shell script to prepend i3status with more stuff

i3status | while :
do
        read line
        echo "mystuff | $line" || exit 1
done