diff options
author | Michael Kantor <michael@mikekantor.xyz> | 2024-04-17 06:31:27 -0400 |
---|---|---|
committer | Michael Kantor <michael@mikekantor.xyz> | 2024-04-17 06:31:27 -0400 |
commit | cd0cdb4cc333a1f8649d7abd9cff3357b192c5b2 (patch) | |
tree | ebdaedf4363c6d94d6532545c00b6a38874a52b7 /config.py | |
parent | 58e08226827c0bcc0bce248d4f5c8a3d38775713 (diff) |
Removed condition that made mpv stop floating while pinned.
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -203,8 +203,8 @@ def cycle_float(qtile, direc): #def debug_key(qtile): -# #dic = dir(DropDown("vimpc", f"{term} -e vimpc -h {home}/.mpd/socket -p 6600", opacity=1).info) -# dic = DropDown("vimpc", f"{term} -e vimpc -h {home}/.mpd/socket -p 6600", opacity=1).info() +# global pinned_wins +# dic = (pinned_wins[0].floating) # # with open('/tmp/qtile_debug.py', 'w') as f: # f.write(str(dic)) @@ -222,9 +222,6 @@ def move_pin(): i.togroup(str(qtile.current_group.name)) - if 'mpv' in name: - i.disable_floating() - #with open('/tmp/wins.dict', 'w') as f: # f.write(str(qtile.groups().get('swallow').get('windows'))) |