summaryrefslogtreecommitdiff
path: root/crcparse
diff options
context:
space:
mode:
Diffstat (limited to 'crcparse')
-rwxr-xr-xcrcparse13
1 files changed, 13 insertions, 0 deletions
diff --git a/crcparse b/crcparse
new file mode 100755
index 0000000..ee823b1
--- /dev/null
+++ b/crcparse
@@ -0,0 +1,13 @@
+#!/sbin/sh
+
+if [ -n "$XDG_CONFIG_HOME" ]; then
+ CONPATH="$XDG_CONFIG_HOME"
+elif [ -d "$HOME/.config" ]; then
+ CONPATH="$HOME/.config"
+else
+ CONPATH="$HOME"
+fi
+
+FILE="$CONPATH/computerrc"
+
+grep $1 "$FILE" | cut -d'=' -f2