Update 2023-11-28 21:33 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id
2023-11-28 21:33:15 +01:00
parent 5df741efe6
commit c91ec73306
8 changed files with 81 additions and 23 deletions

25
.bin/xcons Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/sh
# set the following quirk in .config/spectrwm/spectrwm.conf
# quirk[XConsole] = FLOAT + ANYWHERE
# get XConsole window id
WID=$(wmctrl -x -l XConsole | fgrep '.XConsole' | cut -d" " -f1)
if [ -z "$WID" ]
then
xconsole &
else
# check if window is iconfified or on another WS (or both)
if xwininfo -id $WID | fgrep -q IsUnMapped
then
# move window to current workspace
#wmctrl -i -r $WID -t $(xprop -root _NET_CURRENT_DESKTOP | cut -d'=' -f2)
wmctrl -i -r $WID -t $_SWM_WS
# remove hidden flag
wmctrl -i -r $WID -b remove,hidden
else
# window is visible => hide
wmctrl -i -r $WID -b add,hidden
fi
fi