Created
April 2, 2020 12:46
-
-
Save stoyanovgeorge/43bfc2ecf5f1d16e95ff160e2aaacc1b to your computer and use it in GitHub Desktop.
Publishing my Rasi theme. Very simple, but at the same time elegant.
This file contains hidden or 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
configuration { | |
show-icons: false; | |
sidebar-mode: false; | |
} | |
* { | |
// Default bg is transparent. | |
background-color: transparent; | |
// Default text is white | |
text-color: white; | |
spacing: 30; | |
} | |
#window { | |
// Default font | |
font: "System San Francisco Display 12"; | |
fullscreen: true; | |
transparency: "background"; | |
background-color: darkgrey/ 96%; | |
// Add dummy widgets on top and bottom so the sizing | |
// nicely centers hdum, independent of resolution. | |
children: [ dummy1, hdum, dummy2 ]; | |
} | |
#hdum { | |
orientation: horizontal; | |
// Add dummy widgets on left and right so the sizing | |
// nicely centers mainbox, independent of resolution. | |
children: [ dummy3, mainbox, dummy4 ]; | |
} | |
#element selected { | |
text-color: #9575cd; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment