summaryrefslogtreecommitdiff
path: root/.local/bin/shortcutgen.bak
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2025-03-30 01:00:51 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2025-03-30 01:00:51 -0400
commitf4c4550e327d9090c82a735d39d104d0bedb602d (patch)
treefcfa762512155c132a66d3adbb56067ca2d5d61b /.local/bin/shortcutgen.bak
parent43dbb32d741e11f8e06341f515944ec757d4578f (diff)
Loads of laptop shit
Diffstat (limited to '.local/bin/shortcutgen.bak')
-rwxr-xr-x.local/bin/shortcutgen.bak23
1 files changed, 23 insertions, 0 deletions
diff --git a/.local/bin/shortcutgen.bak b/.local/bin/shortcutgen.bak
new file mode 100755
index 0000000..fe5ed75
--- /dev/null
+++ b/.local/bin/shortcutgen.bak
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+
+# raw (basic processing before converting to specific formats)
+# - remove comments
+# - remove empty lines
+# - remove spacing (keep commas between columns)
+# - remove trailing whitespace
+
+# Strip comments, remove empty lines, condense spacing, remove trailing whitespace
+raw="$(sed 's/#.*//g;s/,[[:space:]]*/,/g;/^$/d;s/[[:space:]]*$//g' <"${XDG_CONFIG_HOME:-$HOME/.config}/shortcutrc")"
+
+# lf (sourced by lfrc)
+echo "$raw" | sed 's/\(.*\),\(.*\),\(.*\)/map g\2 cd \3/' >"${XDG_CONFIG_HOME:-$HOME/.config}/lf/shortcuts"
+
+# Shell aliases (read by zshrc)
+echo "$raw" | sed 's/\(.*\),\(.*\),\(.*\)/alias g\2="cd \3"/' >"${XDG_CACHE_HOME:-$HOME/.cache}/zsh-shortcuts"
+
+# Environment variables (read by .profile)
+echo "$raw" | sed 's/^\(.*\),\(.*\),/export G\U\2=,/;s/,\(.*\)/\1/' >"${XDG_CACHE_HOME:-$HOME/.cache}/env-shortcuts"
+
+
+