aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-following
blob: b333e50a821a05346b89f593cc360b6e0a7b5642 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
FOLLOWING="$HOME/.arching-kaos/following"
if [ -f $FOLLOWING ]
then
	cat $FOLLOWING
else
	logthis "No following file, creating"
	touch $FOLLOWING
	echo "None found"
fi