d0tfiles

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

Appfolder.rasi (4855B)


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