[Linux] Replace urxvt with termite

This commit is contained in:
Ivan Malison 2017-05-22 18:29:23 -07:00
parent 4d978e8a33
commit ae8c515d6c
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
3 changed files with 51 additions and 1 deletions

View File

@ -92,6 +92,8 @@ main = do
fallbackIcons _ klass fallbackIcons _ klass
| "URxvt" `isInfixOf` klass = | "URxvt" `isInfixOf` klass =
IIFilePath $ resourcesDirectory "urxvt.png" IIFilePath $ resourcesDirectory "urxvt.png"
| "Termite" `isInfixOf` klass =
IIFilePath $ resourcesDirectory "urxvt.png"
| "Kodi" `isInfixOf` klass = IIFilePath $ resourcesDirectory "kodi.png" | "Kodi" `isInfixOf` klass = IIFilePath $ resourcesDirectory "kodi.png"
| otherwise = IIColor (0xFF, 0xFF, 0, 0xFF) | otherwise = IIColor (0xFF, 0xFF, 0, 0xFF)
myGetIconInfo = windowTitleClassIconGetter False fallbackIcons myGetIconInfo = windowTitleClassIconGetter False fallbackIcons

View File

@ -0,0 +1,48 @@
[colors]
# Base16 Default Dark
# Author: Chris Kempson (http://chriskempson.com)
foreground = #d8d8d8
foreground_bold = #e8e8e8
cursor = #e8e8e8
background = #181818
# 16 color space
# Black, Gray, Silver, White
color0 = #181818
color8 = #585858
color7 = #d8d8d8
color15 = #f8f8f8
# Red
color1 = #ab4642
color9 = #ab4642
# Green
color2 = #a1b56c
color10 = #a1b56c
# Yellow
color3 = #f7ca88
color11 = #f7ca88
# Blue
color4 = #7cafc2
color12 = #7cafc2
# Purple
color5 = #ba8baf
color13 = #ba8baf
# Teal
color6 = #86c1b9
color14 = #86c1b9
# Extra colors
color16 = #dc9656
color17 = #a16946
color18 = #282828
color19 = #383838
color20 = #b8b8b8
color21 = #e8e8e8

View File

@ -68,7 +68,7 @@ main =
xmonad . docks . pagerHints . ewmh $ xmonad . docks . pagerHints . ewmh $
def def
{ modMask = mod4Mask { modMask = mod4Mask
, terminal = "urxvt" , terminal = "termite"
, manageHook = myManageHook <+> manageHook def , manageHook = myManageHook <+> manageHook def
, layoutHook = myLayoutHook , layoutHook = myLayoutHook
, borderWidth = 0 , borderWidth = 0