Skip to content

Instantly share code, notes, and snippets.

@Cardoso1994
Last active November 18, 2023 22:26
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save Cardoso1994/80641d652a4adcf6c8f718ebc3770ab9 to your computer and use it in GitHub Desktop.
Save Cardoso1994/80641d652a4adcf6c8f718ebc3770ab9 to your computer and use it in GitHub Desktop.
Gruvbox material colorscheme for i3wm
################################
#### Gruvbox Material Light ####
################################
set $bg #fbf1c7
set $fg #654735
set $red #c14a4a
set $orange #c35e0a
set $green #6c782e
set $blue #45707a
set $purple #945e80
set $aqua #4c7a5d
set $darkgray #fbf1c7
###############################
#### Gruvbox Material Dark ####
###############################
set $bg #282828
set $fg #d4be98
set $red #ea6962
set $orange #e78a4e
set $green #a9b665
set $blue #7daea3
set $purple #d3869b
set $aqua #89b482
set $darkgray #282828
#############
#### BAR ####
#############
bar {
colors {
# bar background color
background $bg
# text color used for blocks that do not have a color specified.
statusline $fg
# workspaces section
# border backgr. text
focused_workspace $orange $orange $bg
inactive_workspace $bg $aqua $bg
active_workspace $bg $blue $bg
urgent_workspace $red $red $fg
}
}
#######################
#### i3 appearance ####
#######################
# Gruvbox Theme brdr bg text indictr chld_brdr
client.focused $orange $orange $bg $orange $orange
client.focused_inactive $aqua $aqua $bg $aqua $aqua
client.unfocused $bg $bg $bg $bg $bg
client.urgent $red $red $bg $red $red
client.placeholder $bg $bg $bg $bg $bg
client.background $bg
@Cardoso1994
Copy link
Author

Cardoso1994 commented Sep 7, 2021 via email

@jiyometrik
Copy link

jiyometrik commented Sep 7, 2021 via email

@mohamad-supangat
Copy link

use this for using fg color in unfocesed window


#######################
#### i3 appearance ####
#######################
#       Gruvbox Theme   brdr        bg          text    indictr     chld_brdr
client.focused          $orange     $orange     $bg     $orange     $orange
client.focused_inactive $aqua       $aqua       $bg     $aqua       $aqua
client.unfocused        $bg         $bg         $fg     $bg         $bg
client.urgent           $red        $red        $bg     $red        $red
client.placeholder      $bg         $bg         $bg     $bg         $bg
client.background       $bg

@mohamad-supangat
Copy link

i used my color scheme in sway at my dotfile repo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment