From ead1551c8bd57dfe6292d7a9c11f3a6c3d6afc60 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Tue, 26 Oct 2021 15:05:18 -0500 Subject: [PATCH] Adding color schemes. --- .xmonad/README.org | 2 +- .xmonad/xmonad.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.xmonad/README.org b/.xmonad/README.org index f2a8300..b2885e8 100644 --- a/.xmonad/README.org +++ b/.xmonad/README.org @@ -600,7 +600,7 @@ This is the "main" of XMonad. This where everything in our configs comes togethe main :: IO () main = do -- Launching three instances of xmobar on their monitors. - xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/xmobarrc" + xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/doom-one-xmobarrc" xmproc1 <- spawnPipe "xmobar -x 1 $HOME/.config/xmobar/xmobarrc" xmproc2 <- spawnPipe "xmobar -x 2 $HOME/.config/xmobar/xmobarrc" -- the xmonad, ya know...what the WM is named after! diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index bcc3036..4e40851 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -486,7 +486,7 @@ myKeys = main :: IO () main = do -- Launching three instances of xmobar on their monitors. - xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/xmobarrc" + xmproc0 <- spawnPipe "xmobar -x 0 $HOME/.config/xmobar/doom-one-xmobarrc" xmproc1 <- spawnPipe "xmobar -x 1 $HOME/.config/xmobar/xmobarrc" xmproc2 <- spawnPipe "xmobar -x 2 $HOME/.config/xmobar/xmobarrc" -- the xmonad, ya know...what the WM is named after!