Add fold markers

master
Hektor Misplon 2023-06-02 22:12:39 +02:00
parent edfe524ae2
commit ca9e1b493b
1 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,4 @@
-- {{{
import XMonad
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.EwmhDesktops
@ -28,6 +29,9 @@ import XMonad.Util.Run
spawnPipe,
)
import XMonad.Util.Ungrab
-- }}}
-- Statusbar {{{
-- Statusbar
myXmobarPP :: PP
@ -65,6 +69,10 @@ myXmobarPP =
yellow = xmobarColor "#ff0" ""
red = xmobarColor "#ff5555" ""
-- }}}
-- Workspaces & screens {{{
-- Shift to workspace and view workspace
shiftAndView id = doF (W.view id) <> doF (W.shift id)
@ -73,6 +81,10 @@ myStartupHook =
do
spawn "albert"
-- }}}
-- Hooks {{{
-- manageHook
myManageHook =
composeAll
@ -117,6 +129,8 @@ myWorkspaceKeys = [ "a", "s", "d", "f", "g" ]
mySharedWorkspaces = [ "shared" ]
mySharedWorkspaceKeys = [ "1" ]
-- }}}
myConfig =
def
{ terminal = "alacritty",