dotfiles

Configs for programs I use!
git clone git://shipwreckt.co.uk/dotfiles.git
Log | Files | Refs | README | LICENSE

dtos-dmenu.rasi (1560B)


      1 /**
      2  * ROFI Color theme
      3  * NAME: dt-dmenu.rasi
      4  * DESCRIPTION: This is a horizontal prompt similar to dmenu.
      5  * AUTHOR: Derek Taylor (DT)
      6  */
      7 
      8 * {
      9     background-color:           #282c34;
     10     border-color:               #282c34;
     11     text-color:                 #bbc2cf;
     12     height:                     25px;
     13     font:                       "SauceCodePro Nerd Font Mono 9";
     14     prompt-font:                "Ubuntu Bold 9";
     15     prompt-background:          #51afef;
     16     prompt-foreground:          #282c34;
     17     prompt-padding:             2px;
     18     selected-normal-background: #ae3f3e;
     19     selected-normal-foreground: #ffffff;
     20     show-icons: true;
     21 }
     22 #window {
     23     anchor: north;
     24     location: north;
     25     width: 80%;
     26     padding: 1px;
     27     children: [ horibox ];
     28 }
     29 #horibox {
     30     orientation: horizontal;
     31     children: [ prompt, entry, listview ];
     32 }
     33 #prompt {
     34     padding:          @prompt-padding;
     35     background-color: @prompt-background;
     36     text-color:       @prompt-foreground;
     37     font:             @prompt-font;
     38 }
     39 #listview {
     40     layout: horizontal;
     41     lines: 100;
     42 }
     43 #entry {
     44     padding: 2px;
     45     expand: false;
     46     width: 10em;
     47 }
     48 #element {
     49     padding: 2px 8px;
     50 }
     51 #element selected {
     52     background-color: @selected-normal-background;
     53     text-color:       @selected-normal-foreground;
     54 }
     55 
     56 element-text {
     57     background-color: inherit;
     58     text-color:       inherit;
     59 }
     60 
     61 /* Not actually relevant for this configuration, but it might
     62 be useful to someone having issues with their icons' background color
     63 
     64 element-icon {
     65     background-color: inherit;
     66 }
     67 */
     68