Revert "Update"

This reverts commit 777960ac7b.
This commit is contained in:
Derek Taylor
2025-12-03 11:20:33 -06:00
parent 777960ac7b
commit a91301075a
758 changed files with 37421 additions and 6 deletions

12
.jwm/menus/recent-files.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
XBEL_PATH=~/.local/share/recently-used.xbel
MAX_ITEMS=20
if [[ -e $XBEL_PATH ]];then
ITEMS=$(sed -rn 's_.*file://([^"]*).*_<Program label="\1">rox -s "\1"</Program>_ p' "$XBEL_PATH")
else
ITEMS="<Program label=\"File ${XBEL_PATH##*/} not found!\"></Program>"
fi
echo "<JWM>"
echo -e "${ITEMS//%/\\x}" | tail -n $MAX_ITEMS
echo "</JWM>"