Created
May 14, 2015 10:28
-
-
Save GoNZooo/334e92c18f29d454263b to your computer and use it in GitHub Desktop.
How to set font attributes for tabs in uzbl-tabbed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set interface_font = "GohuFont 9" | |
# Colors for non-selected tab, outer parts | |
set tab_colours = background="black" foreground="#666" font=@interface_font | |
# Colors for non-selected tab, inner parts | |
set tab_text_colours = background="black" foreground="#666" font=@interface_font | |
# Colors for selected tab, outer parts | |
set selected_tab = background="black" foreground="#999" font=@interface_font | |
# Colors for selected tab, inner parts | |
set selected_tab_text = background="black" foreground="#aaa" font=@interface_font | |
set tab_indicate_https = 0 | |
# These are inactive unless tab_indicate_https is set to 0 | |
# Colors for https non-selected tab, outer parts | |
set https_colours = foreground="#888" font=@interface_font | |
# Colors for https non-selected tab, outer parts | |
set https_text_colours = foreground="#9c8e2d" font=@interface_font | |
# Colors for https non-selected tab, outer parts | |
set selected_https = foreground="#fff" font=@interface_font | |
# Colors for https non-selected tab, outer parts | |
set selected_https_text = foreground="gold" font=@interface_font |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment