Fixed powerline fonts - YAY

Added various theming
This commit is contained in:
jfm 2018-06-07 12:59:25 +02:00
parent 2921d565f3
commit b74638bdca
5 changed files with 22 additions and 21 deletions

View File

@ -283,7 +283,7 @@ exec --no-startup-id nitrogen --restore; sleep 1; compton -b
exec --no-startup-id nm-applet exec --no-startup-id nm-applet
exec --no-startup-id xfce4-power-manager exec --no-startup-id xfce4-power-manager
exec --no-startup-id pamac-tray exec --no-startup-id pamac-tray
exec --no-startup-id clipit # exec --no-startup-id clipit
exec --no-startup-id blueman-applet exec --no-startup-id blueman-applet
# exec_always --no-startup-id sbxkb # exec_always --no-startup-id sbxkb
# exec --no-startup-id start_conky_maia # exec --no-startup-id start_conky_maia

View File

@ -2,20 +2,20 @@
"name": "Solarized dark for shell", "name": "Solarized dark for shell",
"groups": { "groups": {
"mode": { "fg": "solarized:base3", "bg": "solarized:green", "attrs": ["bold"] }, "mode": { "fg": "solarized:base3", "bg": "solarized:green", "attrs": ["bold"] },
"gitstatus": { "fg": "gray8", "bg": "gray2", "attrs": [] }, "gitstatus": { "fg": "gray8", "bg": "solarized:base02", "attrs": [] },
"gitstatus_branch": { "fg": "gray8", "bg": "gray2", "attrs": [] }, "gitstatus_branch": { "fg": "gray8", "bg": "solarized:base02", "attrs": [] },
"gitstatus_branch_clean": { "fg": "green", "bg": "gray2", "attrs": [] }, "gitstatus_branch_clean": { "fg": "green", "bg": "solarized:base02", "attrs": [] },
"gitstatus_branch_dirty": { "fg": "gray8", "bg": "gray2", "attrs": [] }, "gitstatus_branch_dirty": { "fg": "gray8", "bg": "solarized:base02", "attrs": [] },
"gitstatus_branch_detached": { "fg": "mediumpurple", "bg": "gray2", "attrs": [] }, "gitstatus_branch_detached": { "fg": "mediumpurple", "bg": "solarized:base02", "attrs": [] },
"gitstatus_tag": { "fg": "darkcyan", "bg": "gray2", "attrs": [] }, "gitstatus_tag": { "fg": "darkcyan", "bg": "solarized:base02", "attrs": [] },
"gitstatus_behind": { "fg": "gray10", "bg": "gray2", "attrs": [] }, "gitstatus_behind": { "fg": "gray10", "bg": "solarized:base02", "attrs": [] },
"gitstatus_ahead": { "fg": "gray10", "bg": "gray2", "attrs": [] }, "gitstatus_ahead": { "fg": "gray10", "bg": "solarized:base02", "attrs": [] },
"gitstatus_staged": { "fg": "green", "bg": "gray2", "attrs": [] }, "gitstatus_staged": { "fg": "green", "bg": "solarized:base02", "attrs": [] },
"gitstatus_unmerged": { "fg": "brightred", "bg": "gray2", "attrs": [] }, "gitstatus_unmerged": { "fg": "brightred", "bg": "solarized:base02", "attrs": [] },
"gitstatus_changed": { "fg": "mediumorange", "bg": "gray2", "attrs": [] }, "gitstatus_changed": { "fg": "mediumorange", "bg": "solarized:base02", "attrs": [] },
"gitstatus_untracked": { "fg": "brightestorange", "bg": "gray2", "attrs": [] }, "gitstatus_untracked": { "fg": "brightestorange", "bg": "solarized:base02", "attrs": [] },
"gitstatus_stashed": { "fg": "darkblue", "bg": "gray2", "attrs": [] }, "gitstatus_stashed": { "fg": "darkblue", "bg": "solarized:base02", "attrs": [] },
"gitstatus:divider": { "fg": "gray8", "bg": "gray2", "attrs": [] } "gitstatus:divider": { "fg": "gray8", "bg": "solarized:base02", "attrs": [] }
}, },
"mode_translations": { "mode_translations": {

View File

@ -9,10 +9,6 @@
"function": "powerline.segments.shell.cwd", "function": "powerline.segments.shell.cwd",
"priority": 10 "priority": 10
}, },
{
"function": "powerline.segments.common.vcs.branch",
"priority": 40
},
{ {
"function": "powerline_gitstatus.gitstatus", "function": "powerline_gitstatus.gitstatus",
"priority": 10 "priority": 10

View File

@ -65,8 +65,8 @@ XTerm*foreground: #fdf6e3
XTerm*reverseVideo: on XTerm*reverseVideo: on
XTerm*faceName: Terminus:size=11:antialias=true XTerm*faceName: Terminus:size=11:antialias=true
XTerm*selectToClipboard: true XTerm*selectToClipboard: true
URxvt*font: xft:DejaVu Sans Mono for Powerline:size=11
URxvt.font: 9x15,xft:TerminessTTFNerdFontMono ! URxvt.font: 9x15,xft:TerminessTTFNerdFontMono
! alternative font settings with 'terminus': ! alternative font settings with 'terminus':
!URxvt.font: -xos4-terminus-medium-r-normal--16-160-72-72-c-80-iso10646-1 !URxvt.font: -xos4-terminus-medium-r-normal--16-160-72-72-c-80-iso10646-1

View File

@ -4,10 +4,14 @@ set clipboard=unnamed
set smartindent set smartindent
set shiftwidth=2 set shiftwidth=2
set tabstop=2 set tabstop=2
set expandtab
set number set number
set autoread set autoread
let g:powerline_pycmd="py3" let g:powerline_pycmd="py3"
let NERDTreeShowHidden=1
let g:NERDTreeDirArrowExpandable = '▸'
let g:NERDTreeDirArrowCollapsible = '▾'
filetype indent on filetype indent on
@ -15,5 +19,6 @@ filetype indent on
:imap <c-s> <Esc>:w<CR>a :imap <c-s> <Esc>:w<CR>a
nnoremap <F7> :tabp<CR> nnoremap <F7> :tabp<CR>
nnoremap <F8> :tabn<CR> nnoremap <F8> :tabn<CR>
map <C-n> :NERDTreeToggle<CR>
au BufWinEnter * set number au BufWinEnter * set number