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

i3status --config ~/.config/i3/.i3status.conf | while :
do
    read line
	WEATHER=$(sh /usr/bin/i3weather.sh)
	echo "$line" || exit 1
done