major update: added screenshots, first-run and a mango configurator.

This commit is contained in:
2026-05-17 14:10:06 +02:00
parent f5d33c4576
commit 38c11b2e56
12 changed files with 151 additions and 33 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
CONFDIR="/home/$(whoami)/.config/mango"
echo "confdir is $CONFDIR"
app=micro
selected=$(ls -1 $CONFDIR | fzf --layout=reverse --preview="bat $CONFDIR/{}")
echo "selected is $selected"
$app $CONFDIR/$selected
echo "opened $CONFDIR/$selected in $app"