Adds docker config (with creds via pass)

This commit is contained in:
Nemo 2019-02-21 06:29:05 +05:30
parent 2b99de3a60
commit b8d468b5de
2 changed files with 33 additions and 24 deletions

View File

@ -0,0 +1,9 @@
{
"auths": {
"https://index.docker.io/v1/": {}
},
"HttpHeaders": {
"User-Agent": "Docker-Client/18.09.2-ce (linux)"
},
"credsStore": "pass"
}

View File

@ -184,26 +184,26 @@ bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcu
#bindsym button 6 exec "notify-send 123" #bindsym button 6 exec "notify-send 123"
# resize window (you can also use the mouse for that) # resize window (you can also use the mouse for that)
mode "resize" { mode "resize" {
# These bindings trigger as soon as you enter the resize mode # These bindings trigger as soon as you enter the resize mode
# Pressing left will shrink the windows width. # Pressing left will shrink the windows width.
# Pressing right will grow the windows width. # Pressing right will grow the windows width.
# Pressing up will shrink the windows height. # Pressing up will shrink the windows height.
# Pressing down will grow the windows height. # Pressing down will grow the windows height.
bindsym j resize shrink width 10 px or 10 ppt bindsym j resize shrink width 10 px or 10 ppt
bindsym k resize grow height 10 px or 10 ppt bindsym k resize grow height 10 px or 10 ppt
bindsym l resize shrink height 10 px or 10 ppt bindsym l resize shrink height 10 px or 10 ppt
bindsym semicolon resize grow width 10 px or 10 ppt bindsym semicolon resize grow width 10 px or 10 ppt
# same bindings, but for the arrow keys # same bindings, but for the arrow keys
bindsym Left resize shrink width 10 px or 10 ppt bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt bindsym Right resize grow width 10 px or 10 ppt
# back to normal: Enter or Escape # back to normal: Enter or Escape
bindsym Return mode "default" bindsym Return mode "default"
bindsym Escape mode "default" bindsym Escape mode "default"
} }
bindsym $mod+r mode "resize" bindsym $mod+r mode "resize"
@ -221,13 +221,13 @@ bar {
workspace_buttons yes workspace_buttons yes
status_command py3status -c ~/.config/i3status/config status_command py3status -c ~/.config/i3status/config
colors { colors {
separator #888888 separator #888888
background #333333 background #333333
statusline #FFFFFF statusline #FFFFFF
focused_workspace #4E9C00 #4E9C00 #FFFFFF focused_workspace #4E9C00 #4E9C00 #FFFFFF
active_workspace #333333 #333333 #FFFFFF active_workspace #333333 #333333 #FFFFFF
inactive_workspace #333333 #333333 #888888 inactive_workspace #333333 #333333 #888888
urgent_workspace #C20000 #C20000 #FFFFFF urgent_workspace #C20000 #C20000 #FFFFFF
} }
} }