7 lines
73 B
Bash
Executable file
7 lines
73 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -f ~/bin/go-i3 ]; then
|
|
~/bin/go-i3
|
|
else
|
|
i3status
|
|
fi
|