This commit is contained in:
2026-08-09 01:52:54 +07:00
parent 811b94ed72
commit 1a0a59880b
13 changed files with 60 additions and 399 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ has_fullscreen() {
import json, subprocess, sys
def is_fullscreen(node):
if node.get('fullscreen_mode', 0) > 0: return True
if node.get('window') and node.get('fullscreen_mode', 0) > 0: return True
return any(is_fullscreen(c) for c in node.get('nodes', []) + node.get('floating_nodes', []))
def find_ws(node, name):