This commit is contained in:
2026-01-26 17:03:18 +01:00
parent cd1b7cc874
commit 1fe5d48f1b
110 changed files with 12381 additions and 224 deletions

15
bin/mb-regenerate-menu Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
MENU=$HOME/.config/openbox/menu.xml
#Jeśli jest pipemenu to nic nie rób
if grep -q "item label" "$MENU";then
#Statyczne
if grep -q icon= "$MENU"; then
#Static menu with icons
obmenu-generator -s -i -c
else
#Static menu without icons:
obmenu-generator -s -c
fi
fi