<柱間 (@hashirama:hashi.sbs)> geekosaur: i was reading it, and basically it hides from the statusbar, but i have no statusbar so it's not needed what i wanted is to tie specific apps to certain workspaces, and these workspaces would be acessed throught unusual keybindings, since im not going to acess them very often like, the regular workspaces are from 0 to 9, but those other workspaces (apart from 0-9) will be tied to their corresponding apps, like this for example: myWorkspaces = ["1:term", "2:web", "3:code", "4:media", "5:misc"] -- Define the manage hook to move apps to specific workspaces myManageHook = composeAll [ className =? "XTerm" --> doShift "1:term" , className =? "Firefox" --> doShift "2:web" , className =? "Code" --> doShift "3:code" -- VS Code , className =? "Vlc" --> doShift "4:media" , className =? "Gimp" --> doShift "5:misc" ] then, i'd acess each of those "special" workspaces throught some longer keybindings. is it possible?