summaryrefslogtreecommitdiff
path: root/i3
diff options
context:
space:
mode:
authortslil clingman <>2020-05-29 12:15:25 -0700
committertslil clingman <>2020-05-29 12:15:25 -0700
commitbdf600fbe75d4f4d9155ea3bb8d5d75efd5c72a6 (patch)
tree937d9418fc4164bcbad1db5a64b1256103d83a76 /i3
parent80b8fffbfe2ec9fdb5e03d73fcf5af785665884d (diff)
i3 colour changes
Diffstat (limited to 'i3')
-rw-r--r--i3/config37
1 files changed, 34 insertions, 3 deletions
diff --git a/i3/config b/i3/config
index 1940109..0392f33 100644
--- a/i3/config
+++ b/i3/config
@@ -1,4 +1,4 @@
-# Time-stamp: <2020-05-11 15:50:40 (tslil@forfeit)>
+# Time-stamp: <2020-05-20 18:56:40 (tslil@forfeit)>
set $mod Mod4
@@ -106,13 +106,13 @@ bindsym $mod+Shift+u focus child
set $ws1 "1 : default"
set $ws2 "2 : work"
-set $ws3 "3 : game"
+set $ws3 "3 : code"
set $ws4 "4"
set $ws5 "5"
set $ws6 "6"
set $ws7 "7"
set $ws8 "8"
-set $ws9 "9"
+set $ws9 "9 : game"
set $ws10 "10"
# switch to workspace
@@ -146,9 +146,40 @@ bindsym $mod+Shift+r reload
bindsym $mod+Shift+w restart
bindsym $mod+Shift+x exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'"
+# ----------------------------------------------------------------------------
+# Colours
+
+set $bg #282828
+set $red #cc241d
+set $green #98971a
+set $yellow #d79921
+set $blue #458588
+set $purple #b16286
+set $aqua #689d68
+set $gray #a89984
+set $darkgray #1d2021
+
+# class border|backgr|text|indicator|child_border
+client.focused $blue $blue $darkgray $purple $darkgray
+client.focused_inactive $darkgray $darkgray $yellow $purple $darkgray
+client.unfocused $darkgray $darkgray $yellow $purple $darkgray
+client.urgent $red $red $white $red $red
+
# -----------------------------------------------------------------------------
# Bar
bar {
status_command i3status
+ colors {
+ # bar background color
+ background $bg
+ # text color used for blocks that do not have a color specified.
+ statusline $yellow
+ # workspaces section
+ # border backgr. text
+ focused_workspace $aqua $aqua $darkgray
+ inactive_workspace $darkgray $darkgray $yellow
+ active_workspace $darkgray $darkgray $yellow
+ urgent_workspace $red $red $bg
+ }
}