Applied solarized theme
85
i3wm/config
@@ -13,7 +13,7 @@
|
|||||||
#############################################
|
#############################################
|
||||||
|
|
||||||
# font
|
# font
|
||||||
set $font "pango:RobotoMono 10"
|
set $font "pango:Droid Sans Mono for Powerline 10"
|
||||||
font $font
|
font $font
|
||||||
|
|
||||||
# floating modifier
|
# floating modifier
|
||||||
@@ -23,11 +23,18 @@ set $mod mod4
|
|||||||
floating_modifier $mod
|
floating_modifier $mod
|
||||||
|
|
||||||
# remove window decorations
|
# remove window decorations
|
||||||
new_window pixel
|
#new_window pixel
|
||||||
|
|
||||||
# focus follows mouse
|
# focus follows mouse
|
||||||
focus_follows_mouse yes
|
focus_follows_mouse yes
|
||||||
|
|
||||||
|
#gaps
|
||||||
|
gaps inner 13
|
||||||
|
gaps outer 5
|
||||||
|
#
|
||||||
|
##border
|
||||||
|
new_window pixel 3
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# Script Section #
|
# Script Section #
|
||||||
@@ -53,9 +60,9 @@ bindym XF86WebCam exec /bin/cheese
|
|||||||
bindsym XF86Launch1 exec urxvt -e sh -c "sudo wifi-menu wlp3s0"
|
bindsym XF86Launch1 exec urxvt -e sh -c "sudo wifi-menu wlp3s0"
|
||||||
|
|
||||||
# jauth two factor authenticator
|
# jauth two factor authenticator
|
||||||
bindsym $mod+F1 exec ~/.i3/util/Authenticator.sh google
|
bindsym $mod+F1 exec /opt/JAuth/authenticator.sh google
|
||||||
bindsym $mod+F2 exec ~/.i3/util/Authenticator.sh facebook
|
bindsym $mod+F2 exec /opt/JAuth/authenticator.sh facebook
|
||||||
bindsym $mod+F3 exec ~/.i3/util/Authenticator.sh dropbox
|
bindsym $mod+F3 exec /opt/JAuth/authenticator.sh dropbox
|
||||||
|
|
||||||
# start dmenu-launcher
|
# start dmenu-launcher
|
||||||
bindsym $mod+d exec ~/.i3/util/i3dmenu-wrapper.sh
|
bindsym $mod+d exec ~/.i3/util/i3dmenu-wrapper.sh
|
||||||
@@ -135,10 +142,10 @@ bindsym $mod+x move scratchpad
|
|||||||
#############################################
|
#############################################
|
||||||
|
|
||||||
# name for the workspaces
|
# name for the workspaces
|
||||||
set $tag1 "1 Terminal"
|
set $tag1 "Terminal"
|
||||||
set $tag2 "2 Internet"
|
set $tag2 "Internet"
|
||||||
set $tag3 "3 Coding"
|
set $tag3 "Coding"
|
||||||
set $tag4 "4 Music"
|
set $tag4 "Music"
|
||||||
|
|
||||||
# switch to workspace
|
# switch to workspace
|
||||||
bindsym $mod+1 workspace $tag1
|
bindsym $mod+1 workspace $tag1
|
||||||
@@ -184,18 +191,38 @@ mode "resize" {
|
|||||||
# Colors #
|
# Colors #
|
||||||
#############################################
|
#############################################
|
||||||
|
|
||||||
# colorscheme
|
# Darkbrown colorscheme
|
||||||
set $DARKBROWN #402e2e
|
set $DARKBROWN #402e2e
|
||||||
set $LIGHTBROWN #978965
|
set $LIGHTBROWN #978965
|
||||||
set $DARKGREY #1f1f1f
|
set $DARKGREY #1f1f1f
|
||||||
set $DARKRED #9b0e0e
|
set $DARKRED #9b0e0e
|
||||||
|
|
||||||
# name #top #border #text
|
# Solarized colorscheme
|
||||||
client.focused $DARKBROWN $LIGHTBROWN $DARKBROWN
|
set $BACKGROUND #002b36
|
||||||
client.unfocused $DARKBROWN $DARKBROWN $LIGHTBROWN
|
set $FOREGROUND #93a1a1
|
||||||
client.focused_inactive $DARKBROWN $DARKBROWN $LIGHTBROWN
|
set $LIGHTGREY #dc322f
|
||||||
client.urgent $DARKBROWN $DARKBROWN $LIGHTBROWN
|
set $GREEN #859900
|
||||||
|
set $BROWN #b58900
|
||||||
|
set $BLUE #268bd2
|
||||||
|
set $VIOLET #6c71c4
|
||||||
|
set $MAGENTA #2aa198
|
||||||
|
set $WHITE #fdf6e3
|
||||||
|
|
||||||
|
client.background #ffffff
|
||||||
|
|
||||||
|
# Darkbrown colorscheme
|
||||||
|
# name #border #background #text #indicator #child_border
|
||||||
|
#client.focused $DARKBROWN $LIGHTBROWN $DARKBROWN $LIGHTBROWN $DARKBROWN
|
||||||
|
#client.unfocused $DARKBROWN $DARKBROWN $LIGHTBROWN $LIGHTBROWN $DARKBROWN
|
||||||
|
#client.focused_inactive $DARKBROWN $DARKBROWN $LIGHTBROWN $LIGHTBROWN $DARKBROWN
|
||||||
|
#client.urgent $DARKBROWN $DARKBROWN $LIGHTBROWN $LIGHTBROWN $DARKBROWN
|
||||||
|
|
||||||
|
# Solarized colorscheme
|
||||||
|
# name #border #background #text #indicator #child_border
|
||||||
|
client.focused $MAGENTA $FOREGROUND $FOREGROUND $GREEN $MAGENTA
|
||||||
|
client.unfocused $LIGHTGREY $BACKGROUND $BACKGROUND $GREEN $BACKGROUND
|
||||||
|
client.focused_inactive $LIGHTGREY $BACKGROUND $BACKGROUND $GREEN $BACKGROUND
|
||||||
|
client.urgent $LIGHTGREY $BACKGROUND $BACKGROUND $GREEN $BACKGROUND
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# i3-bar #
|
# i3-bar #
|
||||||
@@ -208,16 +235,30 @@ bar {
|
|||||||
status_command i3status -c ~/.i3/i3status.conf
|
status_command i3status -c ~/.i3/i3status.conf
|
||||||
separator_symbol ".::"
|
separator_symbol ".::"
|
||||||
|
|
||||||
|
# Darkbrown colorscheme
|
||||||
|
# colors {
|
||||||
|
# statusline $LIGHTBROWN
|
||||||
|
# background $DARKGREY
|
||||||
|
# separator $DARKRED
|
||||||
|
#
|
||||||
|
# # name #border #bg #text
|
||||||
|
# focused_workspace $LIGHTBROWN $DARKBROWN $LIGHTBROWN
|
||||||
|
# active_workspace $DARKBROWN $DARKBROWN $LIGHTBROWN
|
||||||
|
# inactive_workspace $DARKBROWN $DARKBROWN $LIGHTBROWN
|
||||||
|
# urgent_workspace $DARKBROWN $DARKBROWN $LIGHTBROWN
|
||||||
|
# }
|
||||||
|
|
||||||
|
# Solarized colorscheme
|
||||||
colors {
|
colors {
|
||||||
statusline $LIGHTBROWN
|
statusline $GREEN
|
||||||
background $DARKGREY
|
background $BACKGROUND
|
||||||
separator $DARKRED
|
separator $MAGENTA
|
||||||
|
|
||||||
# name #border #bg #text
|
# name #border #bg #text
|
||||||
focused_workspace $LIGHTBROWN $DARKBROWN $LIGHTBROWN
|
focused_workspace $MAGENTA $BACKGROUND $GREEN
|
||||||
active_workspace $DARKBROWN $DARKBROWN $LIGHTBROWN
|
active_workspace $BACKGROUND $BACKGROUND $GREEN
|
||||||
inactive_workspace $DARKBROWN $DARKBROWN $LIGHTBROWN
|
inactive_workspace $BACKGROUND $BACKGROUND $GREEN
|
||||||
urgent_workspace $DARKBROWN $DARKBROWN $LIGHTBROWN
|
urgent_workspace $BACKGROUND $BACKGROUND $GREEN
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
########################################################
|
BG="#002b36"
|
||||||
# _ __ _______ #
|
FG="#93a1a1"
|
||||||
# | | \ \ / / __ \ #
|
SBG="#6c71c4"
|
||||||
# __| |_ __ ___ ___ _ __ _ \ \ /\ / /| |__) | #
|
SFG="#93a1a1"
|
||||||
# / _` | '_ ` _ \ / _ \ '_ \| | | \ \/ \/ / | _ / #
|
|
||||||
# | (_| | | | | | | __/ | | | |_| |\ /\ / | | \ \ #
|
|
||||||
# \__,_|_| |_| |_|\___|_| |_|\__,_| \/ \/ |_| \_\ #
|
|
||||||
# #
|
|
||||||
########################################################
|
|
||||||
|
|
||||||
BACKGROUND="#402e2e"
|
i3-dmenu-desktop --dmenu="dmenu -i -nb $BG -nf $FG -sb $SBG -sf $SFG -l 16"
|
||||||
FOREGOURND="#978965"
|
|
||||||
SELECTED_BACKGROUND="#808080"
|
|
||||||
SELECTED_FOREGROUND="#ffff00"
|
|
||||||
|
|
||||||
i3-dmenu-desktop --dmenu='dmenu -i -nb '#402e2e' -nf '#978965' -sb '#808080' -sf '#ffff00' -l 8'
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 256 KiB |
|
Before Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 380 KiB |
|
Before Width: | Height: | Size: 219 KiB |
|
Before Width: | Height: | Size: 429 KiB |
|
Before Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 1019 KiB |
|
Before Width: | Height: | Size: 447 KiB |
BIN
wallpapers/solarized1.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
wallpapers/solarized2.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
wallpapers/solarized3.png
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
wallpapers/solarized4.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 264 KiB |
|
Before Width: | Height: | Size: 690 KiB |