feat: float file manager

This commit is contained in:
♥ Minnie ♥ 2025-03-07 23:12:19 +08:00
parent 2421cd60a8
commit f9d11a873d
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -34,6 +34,7 @@ myConfig = def
, normalBorderColor = myNormalBorderColor
, focusedBorderColor = myFocusedBorderColor
, workspaces = myWorkspaces
, manageHook = myManageHook
} `additionalKeys` myKeybindings
-- | Configuration
@ -143,3 +144,8 @@ myXmobarPP = def
, ppOrder = \[ws, l, _] -> [ws, l]
}
-- | ManageHook
myManageHook = composeAll
[ className =? "Thunar" --> doFloat
, className =? "Ristretto" --> doFloat
]