[MINOR] Changed terminal to kitty in xmonad

This commit is contained in:
Afonso Franco 2023-05-24 12:56:51 +01:00
parent eaa89ac51a
commit a3b65a1bdb
Signed by: afonso
SSH key fingerprint: SHA256:JiuxZNdA5bRWXPMUJChI0AQ75yC+cXY4xM0IaVwEVys

View file

@ -57,7 +57,7 @@ import Colors.Teal
* Variables
@code haskell
myTerminal = "alacritty"
myTerminal = "kitty"
myTerminalTmux = myTerminal ++ " -e tmux a"
myTextEditor = "nvim"
myWebBrowser = "firefox"
@ -172,7 +172,7 @@ myStartupHook = do
spawn ("killall trayer ;sleep 1 && trayer --monitor 0 --edge top --align right --widthtype request --padding 7 --iconspacing 12 --SetDockType true --SetPartialStrut true --expand true --transparent true --alpha 0 --tint 0x2B2E37 --height 26 --distance 5 &")
spawnOn "web" myWebBrowser
spawnOn "main" myTerminalTmux
spawnOn "monitoring" ("alacritty -e btop")
spawnOn "monitoring" (myTerminal ++ " -e btop")
@end
* XMobar Config
@code haskell