commit 777da33b29a6e574e2c1a27069646c92f8ea6ef8
parent 2ecbb0a2812f4829f644765e3157eb07747137c1
Author: regexghost <regexghost@protonmail.com>
Date: Mon, 11 May 2026 21:18:26 +0100
minor updates
Diffstat:
4 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/jwm/.config/jwm/jwmrc b/jwm/.config/jwm/jwmrc
@@ -182,7 +182,7 @@
<Key mask="4" key="c">exec:st -t qalc -e qalc</Key>
<Key mask="4" key="e">exec:st -t ranger -e ranger</Key>
<Key mask="4S" key="e">exec:xfiles</Key>
- <Key mask="4" key="q">exec:~/.local/share/regexghostw/</Key>
+ <Key mask="4" key="q">exec:~/.local/share/regexghost/wm-scripts/bookmarks.sh</Key>
<!-- Mouse bindings -->
<!-- <Mouse context="root" button="4">ldesktop</Mouse> -->
diff --git a/lists/jwm b/lists/jwm
@@ -0,0 +1 @@
+~/.config/jwm/jwmrc
diff --git a/panel-scripts/music.sh b/panel-scripts/music.sh
@@ -2,6 +2,7 @@
# Music playing script
+DMENU_SCRIPT="$XDG_DATA_HOME/regexghost/wm-scripts/dmenu-runner.sh"
MUSIC_DIR="$HOME/Music"
FAVOURITES_DIR="$MUSIC_DIR/Favourites"
@@ -54,7 +55,7 @@ fi
if [ "$1" = "--choice" ]; then
# Ask for playlist
- playlist="$(ls "$MUSIC_DIR" | sed 's/\([A-Z][a-z]\)/ \1/g' | sed 's/\([a-z]\)\([0-9]\)/\1 \2/g' | sed 's/^ //g' | dmenu -p "Select Playlist:" -l 10)"
+ playlist="$(ls "$MUSIC_DIR" | sed 's/\([A-Z][a-z]\)/ \1/g' | sed 's/\([a-z]\)\([0-9]\)/\1 \2/g' | sed 's/^ //g' | "${DMENU_SCRIPT}" "Select Playlist:")"
playlist_path="$MUSIC_DIR/$(echo "$playlist" | sed 's/ //g')"
else
playlist_path="$MUSIC_DIR/CurrentPlaylist"
@@ -62,7 +63,7 @@ fi
# Check for sub playlists
if find "$playlist_path" -mindepth 1 -type d | grep -q ""; then
- playlist="$(ls "$playlist_path" | sed 's/\([A-Z][a-z]\)/ \1/g' | sed 's/\([a-z]\)\([0-9]\)/\1 \2/g' | sed 's/^ //g' | awk 'BEGIN {RS = ""} {print "All Songs\n"$0}' | dmenu -p "Select Playlist:" -l 10)"
+ playlist="$(ls "$playlist_path" | sed 's/\([A-Z][a-z]\)/ \1/g' | sed 's/\([a-z]\)\([0-9]\)/\1 \2/g' | sed 's/^ //g' | awk 'BEGIN {RS = ""} {print "All Songs\n"$0}' | "${DMENU_SCRIPT}" "Select Playlist:")"
# If all songs, don't change playlist path
if ! [ "$playlist" = "All Songs" ]; then
playlist_path="$playlist_path/$(echo "$playlist" | sed 's/ //g')"
diff --git a/terminal-scripts/Makefile b/terminal-scripts/Makefile
@@ -9,6 +9,7 @@ normal:
mv directory_bookmarks ${BIN}/directory_bookmarks
cp github_latest_release.sh ${BIN}/github_latest_release
cp heic_to_jpg.sh ${BIN}/heictojpg
+ cp qmount.sh ${BIN}/qmount
go build -o tablealigner tablealigner.go
mv tablealigner ${BIN}/tablealigner
go build -o geohash geohash.go