mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-11-02 03:12:10 +01:00
8 lines
184 B
Bash
8 lines
184 B
Bash
|
|
#! /bin/bash
|
||
|
|
FOCUSED=$(xprop -root _NET_ACTIVE_WINDOW | awk -F' ' '{print $NF}')
|
||
|
|
if xprop -id ${FOCUSED} _NET_WM_STATE | grep -q _NET_WM_STATE_FULLSCREEN; then
|
||
|
|
exit 1
|
||
|
|
else
|
||
|
|
exit 0
|
||
|
|
fi
|