move xdg directories to the default location.
a lot of applications seem to hardcode this location, so it's better to have something default, or default-adjasoned.
This commit is contained in:
14
.local/bin/xfullscreen-toggle
Executable file
14
.local/bin/xfullscreen-toggle
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
WIN=$(xdotool getwindowfocus)
|
||||
STATE=$(xprop -id "$WIN" _NET_WM_STATE)
|
||||
|
||||
# check if fullscreen is present in the state
|
||||
if echo "$STATE" | grep -q '_NET_WM_STATE_FULLSCREEN'; then
|
||||
wmctrl -ir "$WIN" -b remove,fullscreen
|
||||
exit $?
|
||||
else
|
||||
# If not fullscreen, add it
|
||||
wmctrl -ir "$WIN" -b add,fullscreen
|
||||
exit $?
|
||||
fi
|
||||
Reference in New Issue
Block a user