d0tfiles

*nix dotfiles for arch linux setup
Log | Files | Refs | README | LICENSE

powermenu.rasi (4320B)


      1 configuration {
      2     font:                           "Iosevka 10";
      3     show-icons:                     false;
      4 	icon-theme: 					"Papirus";
      5     display-drun: 					":";
      6     drun-display-format:            "{name}";
      7     threads:                        0;
      8     scroll-method:                  0;
      9     disable-history:                false;
     10     fullscreen:                     false;
     11 	hide-scrollbar: 				true;
     12 	sidebar-mode: 					false;
     13 }
     14 
     15 @import "colors.rasi"
     16 
     17 window {
     18     transparency:                   "real";
     19     background-color:               @background;
     20     text-color:                     @foreground;
     21 	border:							1px;
     22     border-radius:                  0px;
     23     border-color:					@selected;
     24     width:                          281px;
     25     location:                       center;
     26     anchor:                         center;
     27     x-offset:                       0;
     28     y-offset:                       0;
     29 }
     30 
     31 prompt {
     32     enabled: 						true;
     33 	padding: 						4px 4px 6px 6px;
     34 	background-color: 				@background;
     35 	text-color: 					@foreground;
     36 }
     37 
     38 textbox-prompt-colon {
     39 	expand: 						false;
     40 	str: 							"";
     41     background-color:               @background;
     42     text-color:                     @urgent;
     43     padding:                        5px 0px 0px 6px;
     44 	font:							"feather 10";
     45 }
     46 
     47 inputbar {
     48 	children: 						[ textbox-prompt-colon, prompt ];
     49     background-color:               @background;
     50     text-color:                     @foreground;
     51     expand:                         false;
     52     border:                  		0px 0px 1px 0px;
     53     border-radius:                  0px;
     54     border-color:                  	@selected;
     55     margin:                         0px 0px 0px 0px;
     56     padding:                        0px 0px 0px 0px;
     57     position:                       center;
     58 }
     59 
     60 
     61 entry {
     62     background-color:               @background;
     63     text-color:                     @foreground;
     64     placeholder-color:              @foreground;
     65     expand:                         true;
     66     horizontal-align:               0;
     67     placeholder:                    "Search";
     68     blink:                          true;
     69     padding:                        4px 0px 0px 0px;
     70 }
     71 
     72 case-indicator {
     73     background-color:               @background;
     74     text-color:                     @foreground;
     75     spacing:                        0;
     76 }
     77 
     78 
     79 listview {
     80     background-color:               @background;
     81     columns:                        1;
     82     lines:							5;
     83     spacing:                        5px;
     84     cycle:                          true;
     85     dynamic:                        true;
     86     layout:                         horizontal;
     87 }
     88 
     89 mainbox {
     90     background-color:               @background;
     91     children:                       [ inputbar, listview ];
     92     spacing:                       	5px;
     93     padding:                        5px 5px 5px 5px;
     94 }
     95 
     96 element {
     97     background-color:               @background;
     98     text-color:                     @foreground;
     99     orientation:                    horizontal;
    100 	font:							"feather 10";
    101 	border:							1px;
    102     border-radius:                  0px;
    103     border-color:					@selected;
    104     padding:                        15px 15px 15px 15px;
    105 }
    106 
    107 element-icon {
    108     size:                           24px;
    109     border:                         0px;
    110 }
    111 
    112 element-text {
    113 	font:							"feather 12";
    114     expand:                         true;
    115     horizontal-align:               0;
    116     vertical-align:                 0;
    117     margin:                         2px 0px 2px 2px;
    118 }
    119 
    120 element normal.urgent,
    121 element alternate.urgent {
    122     background-color:               @urgent;
    123     text-color:                     @foreground;
    124     border-radius:                  9px;
    125 }
    126 
    127 element normal.active,
    128 element alternate.active {
    129     background-color:               @background;
    130     text-color:                     @foreground;
    131 }
    132 
    133 element selected {
    134     background-color:               @selected;
    135     text-color:                     @background;
    136     border:                  		0px;
    137     border-radius:                  0px;
    138     border-color:                  	@selected;
    139 }
    140 
    141 element selected.urgent {
    142     background-color:               @urgent;
    143     text-color:                     @foreground;
    144 }
    145 
    146 element selected.active {
    147     background-color:               @background;
    148     color:                          @foreground;
    149 }