d0tfiles

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

KDE_Krunner.rasi (4746B)


      1 configuration {
      2     font:                           "Noto Sans 10";
      3     show-icons:                     true;
      4 	icon-theme: 					"Breeze";
      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 /* -- Breeze Light-- */
     16 * {
     17     background:                     #EFF0F1FF;
     18     background-alt:                 #EFF0F1FF;
     19     foreground:                     #000000A6;
     20     border:               			#3DAEE9FF;
     21     selected:               		#93CEE999;
     22     urgent:                         #DA4453FF;
     23 }
     24 
     25 /* -- Breeze Dark-- */
     26 /*
     27 * {
     28     background:                     #31363bff;
     29     background-alt:                 #31363bff;
     30     foreground:                     #f5f5f5e6;
     31     border:               			#1d99f3ff;
     32     selected:               		#3daee966;
     33     urgent:                         #DA4453FF;
     34 }
     35 */
     36 
     37 /* -- Black-- */
     38 /*
     39 * {
     40     background:                     #000000ff;
     41     background-alt:                 #000000ff;
     42     foreground:                     #f5f5f5b3;
     43     border:               			#1d99f3ff;
     44     selected:               		#3daee966;
     45     urgent:                         #DA4453FF;
     46 }
     47 */
     48 
     49 window {
     50     transparency:                   "real";
     51     background-color:               @background;
     52     text-color:                     @foreground;
     53     border-radius:                  0px;
     54     width:                          40%;
     55     location:                       north;
     56     anchor:                         north;
     57     x-offset:                       0;
     58     y-offset:                       0;
     59 }
     60 
     61 prompt {
     62     enabled: 						true;
     63 	padding: 						4px 10px 0px 4px;
     64 	background-color: 				@background;
     65 	text-color: 					@foreground;
     66 	font:							"FantasqueSansMono Nerd Font 9";
     67 }
     68 
     69 
     70 inputbar {
     71     background-color:               @background;
     72     text-color:                     @foreground;
     73     expand:                         false;
     74     border:                  		1px;
     75     border-radius:                  2px;
     76     border-color:                  	@border;
     77     margin:                         0px 0px 0px 0px;
     78     padding:                        5px 5px 5px 5px;
     79     position:                       center;
     80 }
     81 
     82 
     83 entry {
     84     background-color:               @background;
     85     text-color:                     @foreground;
     86     placeholder-color:              @foreground;
     87     expand:                         true;
     88     horizontal-align:               0;
     89     placeholder:                    "Search";
     90     blink:                          true;
     91 }
     92 
     93 case-indicator {
     94     background-color:               @background;
     95     text-color:                     @foreground;
     96     spacing:                        0;
     97 }
     98 
     99 
    100 listview {
    101     background-color:               @background;
    102     columns:                        1;
    103     lines:	                        7;
    104     spacing:                        4px;
    105     cycle:                          false;
    106     dynamic:                        true;
    107     layout:                         vertical;
    108 }
    109 
    110 mainbox {
    111     background-color:               @background;
    112     children:                       [ inputbar, listview ];
    113     spacing:                       	8px;
    114     padding:                        8px 8px 8px 8px;
    115 }
    116 
    117 element {
    118     background-color:               @background;
    119     text-color:                     @foreground;
    120     orientation:                    horizontal;
    121     border-radius:                  4px;
    122     padding:                        4px 4px 4px 4px;
    123 }
    124 
    125 element-icon {
    126     size:                           21px;
    127     border:                         0px;
    128 }
    129 
    130 element-text {
    131     expand:                         true;
    132     horizontal-align:               0;
    133     vertical-align:                 0;
    134     margin:                         2px 0px 2px 2px;
    135 }
    136 
    137 element normal.urgent,
    138 element alternate.urgent {
    139     background-color:               @urgent;
    140     text-color:                     @foreground;
    141     border-radius:                  9px;
    142 }
    143 
    144 element normal.active,
    145 element alternate.active {
    146     background-color:               @background-alt;
    147     text-color:                     @foreground;
    148 }
    149 
    150 element selected {
    151     background-color:               @selected;
    152     text-color:                     @foreground;
    153     border:                  		1px;
    154     border-radius:                  2px;
    155     border-color:                  	@border;
    156 }
    157 
    158 element selected.urgent {
    159     background-color:               @urgent;
    160     text-color:                     @foreground;
    161 }
    162 
    163 element selected.active {
    164     background-color:               @background-alt;
    165     color:                          @foreground;
    166 }