Get rid of ideHooks

This commit is contained in:
Mats Rauhala 2020-02-03 09:58:24 +02:00
parent d15ae94ba5
commit e80b309569
1 changed files with 3 additions and 7 deletions

View File

@ -123,14 +123,10 @@ myManageHook = composeAll $ concat [
, documentHooks
, floatHooks
, debuggerHooks
, ideHooks
, flowHook
]
where
classHook y = map (\x -> className =? x --> y)
ideHooks = classHook (doShift "eclipse") [
"Anypoint Studio"
]
webHooks = classHook (doShift "web") [
"Firefox"
, "qutebrowser"
@ -150,7 +146,7 @@ myManageHook = composeAll $ concat [
"libreoffice"
, "libreoffice-calc"
, "Assistant"
, "Bouml"
, "Bouml" -- Oh wow, didn't even remember this existed
]
floatHooks = classHook doFloat [
"SMplayer"
@ -158,11 +154,11 @@ myManageHook = composeAll $ concat [
, "MPlayer"
, "Kaffeine"
, "Xmessage"
, "Wfica_Seamless"
, "Wfica_Seamless" -- I think this is citrix
, "mpv"
]
debuggerHooks = classHook (doShift "debugger") [
"JSwat Debugger",
"JSwat Debugger", -- Haven't used this in years. A good thing?
"DBeaver"
]
dynamicsHook = [title =~? "Dynamics" --> doShift "dynamics"]