17 lines
291 B
Bash
17 lines
291 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
SRC="/etc/X11/fluxbox/fluxbox-menu"
|
|
DST="/var/run/retrodebian/final-fluxbox-menu"
|
|
|
|
mkdir -p "$DST"
|
|
|
|
sed \
|
|
-e '/(Eterm/d' \
|
|
-e '/(Rxvt-Unicode (Black/d' \
|
|
-e '/(XTerm/d' \
|
|
"$SRC" > "$DST.tmp"
|
|
|
|
mv "$DST.tmp" "$DST"
|
|
|
|
fluxbox-remote reconfigure >/dev/null 2>&1 || true |