diff options
-rwxr-xr-x | bin/bother | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bother b/bin/bother index 1d97791..d63d899 100755 --- a/bin/bother +++ b/bin/bother @@ -2,9 +2,9 @@ # puts up a critical notification if $HOME/today exists, containing the contents of that file. if [ -z "$XFILE" ]; then if [ -f $HOME/.xsession ]; then - XFILE=xsession + XFILE=$HOME/.xsession elif [ -f $HOME/.xinitrc ]; then - XFILE=xinitrc + XFILE=$HOME/.xinitrc fi fi if grep -q "dwm" $XFILE; then |