aboutsummaryrefslogtreecommitdiff
path: root/bin/following
diff options
context:
space:
mode:
Diffstat (limited to 'bin/following')
-rwxr-xr-xbin/following10
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/following b/bin/following
new file mode 100755
index 0000000..b333e50
--- /dev/null
+++ b/bin/following
@@ -0,0 +1,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