diff --git a/scripts/plasma-panel.sh b/scripts/plasma-panel.sh new file mode 100755 index 0000000..ac72cf5 --- /dev/null +++ b/scripts/plasma-panel.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +hiding=$(qdbus org.kde.plasmashell /PlasmaShell evaluateScript "p = panelById(panelIds[0]); print(p.hiding);") + +if [ $hiding == "none" ] +then + qdbus org.kde.plasmashell /PlasmaShell evaluateScript "p = panelById(panelIds[0]); p.hiding = 'autohide';" +else + qdbus org.kde.plasmashell /PlasmaShell evaluateScript "p = panelById(panelIds[0]); p.hiding = 'none';" +fi + +echo $hiding