modified: .Xresources

modified:   .config/xmobar/xmobarrc0
	modified:   .config/xmobar/xmobarrc1
	modified:   .config/xmobar/xmobarrc2
	modified:   .vimrc
	modified:   .xmonad/xmonad.hs
	modified:   .zshrc
	modified:   st/config.h
This commit is contained in:
Derek Taylor 2019-02-12 17:56:31 -06:00
parent 09aa764012
commit ab180db5b8
8 changed files with 83 additions and 56 deletions

View File

@ -74,28 +74,42 @@ URxvt*depth: 32
!! COLORS
! special
URxvt*foreground: #F8F8F2
URxvt*background: [100]#282A36
URxvt*cursorColor: #F8F8F2
URxvt*foreground: #bbc5ff
URxvt*background: [100]#292d3e
URxvt*cursorColor: #bbc5ff
XTerm*foreground: #F8F8F2
XTerm*background: #282A36
XTerm*cursorColor: #c0c5ce
XTerm*foreground: #bbc5ff
XTerm*background: #292d3e
XTerm*cursorColor: #bbc5ff
*.color0: #000000
*.color8: #4D4D4D
*.color1: #FF5555
*.color9: #FF6E67
*.color2: #50FA7B
*.color10: #5AF78E
*.color3: #F1FA8C
*.color11: #F4F99D
*.color4: #BD93F9
*.color12: #CAA9FA
*.color5: #FF79C6
*.color13: #FF92D0
*.color6: #8BE9FD
*.color14: #9AEDFE
*.color7: #BFBFBF
*.color15: #E6E6E6
! black
*.color0: #292d3e
*.color8: #434758
! red
*.color1: #f07178
*.color9: #ff8b92
! green
*.color2: #c3e88d
*.color10: #ddffa7
! yellow
*.color3: #ffcb6b
*.color11: #ffe585
! blue
*.color4: #82aaff
*.color12: #9cc4ff
! magenta
*.color5: #c792ea
*.color13: #e1acff
! cyan
*.color6: #89ddff
*.color14: #a3f7ff
! white
*.color7: #d0d0d0
*.color15: #ffffff

View File

@ -3,8 +3,8 @@
-- you can find weather location codes here: http://weather.noaa.gov/index.html
Config { font = "xft:UbuntuMono Nerd Font:pixelsize=14:antialias=true:hinting=true"
, bgColor = "#282A36"
, fgColor = "#F8F8F2"
, bgColor = "#292d3e"
, fgColor = "#bbc5ff"
, position = Top
, lowerOnStart = True
, hideOnStart = False

View File

@ -3,8 +3,8 @@
-- you can find weather location codes here: http://weather.noaa.gov/index.html
Config { font = "xft:UbuntuMono Nerd Font:pixelsize=14:antialias=true:hinting=true"
, bgColor = "#282A36"
, fgColor = "#F8F8F2"
, bgColor = "#292d3e"
, fgColor = "#bbc5ff"
, position = Top
, lowerOnStart = True
, hideOnStart = False

View File

@ -3,8 +3,8 @@
-- you can find weather location codes here: http://weather.noaa.gov/index.html
Config { font = "xft:UbuntuMono Nerd Font:pixelsize=14:antialias=true:hinting=true"
, bgColor = "#282A36"
, fgColor = "#F8F8F2"
, bgColor = "#292d3e"
, fgColor = "#bbc5ff"
, position = Top
, lowerOnStart = True
, hideOnStart = False
@ -19,5 +19,5 @@ Config { font = "xft:UbuntuMono Nerd Font:pixelsize=14:antialias=true:hinting
]
, sepChar = "%"
, alignSep = "}{"
, template = "%UnsafeStdinReader% }{ <fc=#91A0BD> <fc=#BD93F9>%cpu%</fc> : <fc=#FF6E67>%memory%</fc> : <fc=#9AEDFE>%disku%</fc> : <fc=#F4F99D>%enp3s0%</fc> : <fc=#F8F8F2>%date%</fc> </fc> "
, template = "%UnsafeStdinReader% }{ <fc=#91A0BD> <fc=#FFE585>%cpu%</fc> : <fc=#F07178>%memory%</fc> : <fc=#82AAFF>%disku%</fc> : <fc=#c3e88d>%enp3s0%</fc> : <fc=#A3F7FF>%date%</fc> </fc> "
}

4
.vimrc
View File

@ -108,8 +108,8 @@ let NERDTreeMinimalUI = 1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Colors
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
hi LineNr ctermfg=4
hi CursorLineNr ctermfg=15 ctermbg=8
hi LineNr ctermfg=242
hi CursorLineNr ctermfg=15
hi VertSplit ctermfg=8 ctermbg=0
hi Statement ctermfg=3

View File

@ -85,11 +85,11 @@ main = do
{ manageHook = ( isFullscreen --> doFullFloat ) <+> manageHook defaultConfig <+> manageDocks
, logHook = dynamicLogWithPP xmobarPP
{ ppOutput = \x -> hPutStrLn xmproc0 x >> hPutStrLn xmproc1 x >> hPutStrLn xmproc2 x
, ppCurrent = xmobarColor "#50FA7B" "" . wrap "[" "]" -- Current workspace in xmobar
, ppVisible = xmobarColor "#50FA7B" "" -- Visible but not current workspace
, ppHidden = xmobarColor "#F1FA8C" "" . wrap "*" "" -- Hidden workspaces in xmobar
, ppHiddenNoWindows = xmobarColor "#FF79C6" "" -- Hidden workspaces (no windows)
, ppTitle = xmobarColor "#F8F8F2" "" . shorten 80 -- Title of active window in xmobar
, ppCurrent = xmobarColor "#c3e88d" "" . wrap "[" "]" -- Current workspace in xmobar
, ppVisible = xmobarColor "#c3e88d" "" -- Visible but not current workspace
, ppHidden = xmobarColor "#82AAFF" "" . wrap "*" "" -- Hidden workspaces in xmobar
, ppHiddenNoWindows = xmobarColor "#F07178" "" -- Hidden workspaces (no windows)
, ppTitle = xmobarColor "#d0d0d0" "" . shorten 80 -- Title of active window in xmobar
, ppSep = "<fc=#9AEDFE> : </fc>" -- Separators in xmobar
, ppUrgent = xmobarColor "#C45500" "" . wrap "!" "!" -- Urgent workspace
, ppExtras = [windowCount] -- # of windows current workspace
@ -101,8 +101,8 @@ main = do
, layoutHook = myLayoutHook
, workspaces = myWorkspaces
, borderWidth = myBorderWidth
, normalBorderColor = "#282A36"
, focusedBorderColor = "#C7ABCA"
, normalBorderColor = "#292d3e"
, focusedBorderColor = "#bbc5ff"
} `additionalKeysP` myKeys
----------------------------------------------------------------------------------------------

13
.zshrc
View File

@ -9,6 +9,13 @@ ZSH=/usr/share/oh-my-zsh/
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="powerlevel9k"
POWERLEVEL9K_COLOR_SCHEME='dark'
POWERLEVEL9K_CONTEXT_DEFAULT_BACKGROUND='5'
POWERLEVEL9K_CONTEXT_DEFAULT_FOREGROUND='0'
POWERLEVEL9K_STATUS_OK_BACKGROUND='8'
POWERLEVEL9K_VCS_CLEAN_BACKGROUND='11'
POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND='8'
POWERLEVEL9K_VCS_MODIFIED_BACKGROUND='10'
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
@ -102,3 +109,9 @@ if [[ ! -d $ZSH_CACHE_DIR ]]; then
fi
source $ZSH/oh-my-zsh.sh
# terminal rickroll!
alias rr='curl -s -L https://raw.githubusercontent.com/keroserene/rickrollrc/master/roll.sh | bash'
# dotfile git alias
alias config='/usr/bin/git --git-dir=/home/dt/dotfiles --work-tree=/home/dt'

View File

@ -88,30 +88,30 @@ unsigned int alpha = 0xee;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#282A36",
"#FF5555",
"#50FA7B",
"#F1FA8C",
"#BD93F9",
"#FF79C6",
"#8BE9FD",
"#BFBFBF",
"#292d3e",
"#f07178",
"#c3e88d",
"#ffcb6b",
"#82aaff",
"#c792ea",
"#89ddff",
"#d0d0d0",
/* 8 bright colors */
"#4D4D4D",
"#FF6E67",
"#5AF78E",
"#F4F99D",
"#CAA9FA",
"#FF92D0",
"#9AEDFE",
"#E6E6E6",
"#434758",
"#ff8b92",
"#ddffa7",
"#ffe585",
"#9cc4ff",
"#e1acff",
"#a3f7ff",
"#ffffff",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#F8F8F2",
"#282A36",
"#bbc5ff",
"#292d3e",
};
/*