Minor changes.

This commit is contained in:
Derek Taylor
2019-05-01 21:55:58 -05:00
parent 43210314f8
commit 2a179d4cac
4 changed files with 26 additions and 15 deletions

View File

@@ -151,7 +151,7 @@ ex ()
export YAOURT_COLORS="nb=1:pkg=1:ver=1;32:lver=1;45:installed=1;42:grp=1;34:od=1;41;5:votes=1;44:dsc=0:other=1;35"
neofetch
alias lynx='lynx -cfg=~/.lynx/lynx.cfg -lss=~/.lynx/lynx.lss'
alias config='/usr/bin/git --git-dir=/home/dt/dotfiles --work-tree=/home/dt'
alias tb="nc termbin.com 9999"

View File

@@ -391,7 +391,7 @@ def init_widgets_list():
fontsize = 9,
margin_y = 0,
margin_x = 0,
padding_y = 9,
padding_y = 5,
padding_x = 5,
borderwidth = 1,
active = colors[2],
@@ -422,7 +422,7 @@ def init_widgets_list():
fontsize = 11,
foreground = colors[5],
background = colors[0],
padding = 6
padding = 5
),
widget.Image(
scale = True,
@@ -431,7 +431,7 @@ def init_widgets_list():
),
widget.Systray(
background=colors[10],
padding = 6
padding = 5
),
widget.Image(
scale = True,
@@ -449,7 +449,7 @@ def init_widgets_list():
interface = "enp3s0",
foreground = colors[0],
background = colors[6],
padding = 6
padding = 5
),
widget.Image(
scale = True,
@@ -459,7 +459,7 @@ def init_widgets_list():
widget.TextBox(
font="Ubuntu Bold",
text="",
padding = 6,
padding = 5,
foreground=colors[0],
background=colors[3],
fontsize=14
@@ -467,7 +467,7 @@ def init_widgets_list():
widget.CurrentLayout(
foreground = colors[0],
background = colors[3],
padding = 6
padding = 5
),
widget.Image(
scale = True,
@@ -477,7 +477,7 @@ def init_widgets_list():
widget.TextBox(
font="Ubuntu Bold",
text="",
padding = 6,
padding = 5,
foreground=colors[0],
background=colors[7],
fontsize=14
@@ -490,7 +490,7 @@ def init_widgets_list():
),
widget.TextBox(
text="Updates",
padding = 6,
padding = 5,
foreground=colors[0],
background=colors[7]
),
@@ -502,7 +502,7 @@ def init_widgets_list():
widget.TextBox(
font="Ubuntu Bold",
text="",
padding = 6,
padding = 5,
foreground=colors[0],
background=colors[8],
fontsize=14
@@ -523,7 +523,7 @@ def init_widgets_list():
text=" 🕒",
foreground=colors[2],
background=colors[9],
padding = 6,
padding = 5,
fontsize=14
),
widget.Clock(
@@ -533,7 +533,7 @@ def init_widgets_list():
),
widget.Sep(
linewidth = 0,
padding = 6,
padding = 5,
foreground = colors[0],
background = colors[9]
),
@@ -551,9 +551,9 @@ def init_widgets_screen2():
return widgets_screen2 # Monitor 2 will display all widgets in widgets_list
def init_screens():
return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), opacity=0.95, size=25)),
Screen(top=bar.Bar(widgets=init_widgets_screen2(), opacity=0.95, size=25)),
Screen(top=bar.Bar(widgets=init_widgets_screen1(), opacity=0.95, size=25))]
return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), opacity=0.95, size=20)),
Screen(top=bar.Bar(widgets=init_widgets_screen2(), opacity=0.95, size=20)),
Screen(top=bar.Bar(widgets=init_widgets_screen1(), opacity=0.95, size=20))]
##### FLOATING WINDOWS #####

9
.vimrc
View File

@@ -108,6 +108,15 @@ let NERDTreeShowLineNumbers=1
let NERDTreeShowHidden=1
let NERDTreeMinimalUI = 1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Minimap
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:minimap_show='<leader>mm'
let g:minimap_update='<leader>mu'
let g:minimap_close='<leader>mc'
let g:minimap_toggle='<leader>mt'
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Colors
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

2
.zshrc
View File

@@ -132,6 +132,8 @@ alias cp="cp -i" # confirm before overwriting something
alias df='df -h' # human-readable sizes
alias grep='grep --colour=auto'
alias lynx='lynx -cfg=~/.lynx/lynx.cfg -lss=~/.lynx/lynx.lss'
zstyle ':completion:*' completer _expand_alias _complete _ignored
alias tb="nc termbin.com 9999"