diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/kitty.conf | 31 | ||||
-rw-r--r-- | conf/pwmt/zathurarc | 2 | ||||
-rw-r--r-- | conf/xmonad/xmonad.hs | 4 |
3 files changed, 33 insertions, 4 deletions
diff --git a/conf/kitty.conf b/conf/kitty.conf new file mode 100644 index 0000000..29c1362 --- /dev/null +++ b/conf/kitty.conf @@ -0,0 +1,31 @@ +font_family iosevka +font_size 10 +font_size_delta 1 +adjust_line_height 110% + +background #161616 +foreground #F2F2F2 +# black +color0 #161616 +color8 #F2F2F2 +# red +color1 #8C3346 +color9 #ff0000 +# green +color2 #aadb0f +color10 #909636 +# yellow +color3 #E4E093 +color11 #ffff00 +# blue +color4 #352F6A +color12 #0000ff +# magenta +color5 #ce5c00 +color13 #f57900 +# cyan +color6 #89b6e2 +color14 #46a4ff +# white +color7 #F2F2F2 +color15 #ffffff diff --git a/conf/pwmt/zathurarc b/conf/pwmt/zathurarc index 5103873..3258fe6 100644 --- a/conf/pwmt/zathurarc +++ b/conf/pwmt/zathurarc @@ -14,5 +14,3 @@ set completion-highlight-fg "#161616" set recolor-lightcolor "#161616" set recolor-darkcolor "#ffffff" - -set recolor diff --git a/conf/xmonad/xmonad.hs b/conf/xmonad/xmonad.hs index 018768a..4102223 100644 --- a/conf/xmonad/xmonad.hs +++ b/conf/xmonad/xmonad.hs @@ -36,7 +36,7 @@ main = xmonad $ ewmh defaultConfig , borderWidth = 3 , normalBorderColor = "#161616" , focusedBorderColor = "#909737" - , terminal = "urxvt" + , terminal = "kitty" , handleEventHook = handleEventHook defaultConfig <+> fullscreenEventHook , layoutHook = availableLayouts } @@ -45,7 +45,7 @@ main = xmonad $ ewmh defaultConfig `additionalKeysP` -- application launchers [ ("M-p" , spawn "rofi -show combi") - , ("M-<Return>" , spawn "urxvt") + , ("M-<Return>" , spawn "kitty") , ("M-<Backspace>" , spawn "vim -g") -- actual window management , ("M-<Left>" , prevWS) |