all repos — dotfiles @ 9fbcfb934cf2999a3e6ed4fa39acfb551da3a102

linux dotfiles

update i3/config

cleaning up and adding color schemes
prithugoswami prithugoswami524@gmail.com
Mon, 24 Dec 2018 05:04:30 +0530
commit

9fbcfb934cf2999a3e6ed4fa39acfb551da3a102

parent

00adc63172efe35b96830dfbe327cdee792ab3fc

1 files changed, 63 insertions(+), 29 deletions(-)

jump to
M i3/configi3/config

@@ -4,7 +4,7 @@ ### Appearance ###{{{

## Wallpaper ## {{{ -set $wall_set feh --bg-fill ~/Desktop/walls/303030.png +set $wall_set feh --bg-fill ~/Desktop/walls/gist.jpg #set $wall_set wal -e -s -i ~/Desktop/walls/canvas.jpg # pywal will set the wallpaper and change the colors only for

@@ -97,6 +97,31 @@ set $brown_dark #1e0106

set $brown_darker #0f0000 set $brown_gold #d17f27 +# Base16 Seti UI by +# template by Matt Parnell, @parnmatt + +set $base00 #151718 +set $base01 #8ec43d +set $base02 #3B758C +set $base03 #41535B +set $base04 #43a5d5 +set $base05 #d6d6d6 +set $base06 #eeeeee +set $base07 #ffffff +set $base08 #Cd3f45 +set $base09 #db7b55 +set $base0A #e6cd69 +set $base0B #9fca56 +set $base0C #55dbbe +set $base0D #55b5db +set $base0E #a074c4 +set $base0F #8a553f + +client.focused $base0D $base0D $base00 $base01 +client.focused_inactive $base02 $base02 $base03 $base01 +client.unfocused $base01 $base01 $base03 $base01 +client.urgent $base02 $base08 $base07 $base08 + #}}} ## Window Decorations ##{{{

@@ -132,8 +157,8 @@ #}}}

### Application Launcher Key Bindings ###{{{ -bindsym $mod+Return exec --no-startup-id urxvt -bindsym $mod+Shift+Return exec --no-startup-id st +bindsym $mod+Return exec --no-startup-id st +bindsym $mod+Shift+Return exec --no-startup-id urxvt bindsym $mod+b exec urxvt -e "ranger" bindsym $mod+Ctrl+b exec terminal -e 'bmenu' bindsym $mod+d exec "rofi -show run -lines 3 -padding 25"

@@ -333,7 +358,7 @@ set $monitor_none "xrandr --output HDMI1 --off --output eDP1 --mode 1366x768 --pos 0x0 --rotate normal"

set $monitor_duplicate "xrandr --output eDP1 --primary --mode 1366x768 --scale 1x1 --output HDMI1 --same-as eDP1 --mode 1280x1024 --scale 0.75x0.75" -set $monitor_right_r_left "xrandr --output HDMI1 --mode 1280x1024 --pos 1370x768 --rotate left --output eDP1 --primary --mode 1366x768 --pos 0x1024 --rotate normal" +set $monitor_right_r_left "xrandr --output HDMI1 --mode 1280x1024 --pos 1370x0 --rotate left --output eDP1 --primary --mode 1366x768 --pos 0x0 --rotate normal" set $mode_monitor_position (T)-Monitor Top , (Y)-Monitor right , (G)-Monitor None , (F)-Monitor Mirror , (<C-y>)-Monitor Right Rotate Left bindsym $mod+y mode "$mode_monitor_position"

@@ -384,7 +409,7 @@

### Autostart Applications/Scripts ###{{{ # Typematic delay and rate (Autorepeating key in X server) -exec --no-startup-id xset r rate 320 30 +exec --no-startup-id xset r rate 300 40 # chaning keyboard layout using Alt+Caps from US to IN exec --no-startup-id setxkbmap -layout us,in -option "grp:alt_caps_toggle" exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1

@@ -416,7 +441,7 @@

bindsym $mod+F2 exec --no-startup-id toggle_touchpad # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. -font xft:Roboto 8 +font pango:Roboto 8 # kill focused window bindsym $mod+o kill

@@ -463,35 +488,44 @@ }

# }}} ### Status Bar ###{{{ -# Start i3bar to display a workspace bar (plus the system information i3status if available) +#Start i3bar to display a workspace bar (plus the system information i3status if available) bar { - i3bar_command i3bar - status_command i3status - position top + i3bar_command i3bar + status_command i3blocks + position top + font pango:Roboto 10 + separator_symbol " ╱ " - tray_output primary - tray_output eDP1 + bindsym button 4 workspace prev + bindsym button 5 workspace next + modifier none - bindsym button4 nop - bindsym button5 nop - font xft:Roboto 9 - strip_workspace_numbers yes + tray_output primary - colors { - background $brown_darker - statusline #F9FAF9 - separator #454947 + colors { + separator #333333 + background #000000a0 + # background $base00 + statusline $base05 + focused_workspace $base0C $base0D $base00 + active_workspace $base02 $base02 $base07 + inactive_workspace $base03 $base03 $base06 + urgent_workspace $base08 $base08 $base07 + } + # colors { + # background $brown_darker + # statusline #F9FAF9 + # separator #454947 -# border, backgr, text - focused_workspace $brown_gold $brown_gold $arc_white - active_workspace #595B5B #353836 #FDF6E3 - inactive_workspace $brown_darker $brown_darker $arc_white - binding_mode $arc_blue $arc_dark_blue $arc_white - urgent_workspace $arc_red $arc_red $arc_white - } +# border, backgr, text + # focused_workspace $brown_gold $brown_gold $arc_white + # active_workspace #595B5B #353836 #FDF6E3 + # inactive_workspace $brown_darker $brown_darker $arc_white + # binding_mode $arc_blue $arc_dark_blue $arc_white + # urgent_workspace $arc_red $arc_red $arc_white + # } } -# hide/unhide i3status bar +# hide/unhide i3bar bindsym $mod+Shift+m bar mode toggle - #}}}