d0tfiles

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

Slingshot.rasi (4590B)


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