d0tfiles

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

Row_Dropdown.rasi (4882B)


      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 window {
     41     transparency:                   "real";
     42     background-color:               @background;
     43     text-color:                     @foreground;
     44     border:                  		0px;
     45     border-radius:                  0px 0px 25px 25px;
     46     border-color:                  	@border;
     47     height:                         42%;
     48     width:                          100%;
     49     location:                       north;
     50     anchor:                         north;
     51     x-offset:                       0;
     52     y-offset:                       0;
     53 }
     54 
     55 prompt {
     56     enabled: 						false;
     57 	padding: 						0px 8px 0px 8px;
     58 	background-color: 				@background-ib;
     59 	text-color: 					@foreground;
     60 	font:							"FantasqueSansMono Nerd Font 12";
     61 }
     62 
     63 
     64 inputbar {
     65     background-color:               @background-ib;
     66     text-color:                     @foreground;
     67     expand:                         false;
     68     border:                  		0px 0px 1.8% 0px;
     69     border-radius:                  30px;
     70     border-color:                  	@border;
     71     margin:                         10px 35% 0% 35%;
     72     padding:                        6px 6px 6px 6px;
     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 Applications";
     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:                        10;
     97     spacing:                        4px;
     98     cycle:                          false;
     99     dynamic:                        true;
    100     layout:                         vertical;
    101 }
    102 
    103 mainbox {
    104     background-color:               @background;
    105     children:                       [ inputbar, listview ];
    106     spacing:                       	10px;
    107     padding:                        5px 5px 5px 5px;
    108 }
    109 
    110 element {
    111     background-color:               @background;
    112     text-color:                     @foreground;
    113     orientation:                    vertical;
    114     border-radius:                  0px;
    115     margin:                         0px 5px 0px 5px;
    116     padding:                        10px 0px 10px 0px;
    117 }
    118 
    119 element-icon {
    120     size:                           64px;
    121     border:                         0px;
    122 }
    123 
    124 element-text {
    125     expand:                         true;
    126     horizontal-align:               0.5;
    127     vertical-align:                 0.5;
    128     margin:                         5px 10px 0px 10px;
    129 }
    130 
    131 element normal.urgent,
    132 element alternate.urgent {
    133     background-color:               @urgent;
    134     text-color:                     @foreground;
    135     border-radius:                  9px;
    136 }
    137 
    138 element normal.active,
    139 element alternate.active {
    140     background-color:               @background-alt;
    141     text-color:                     @foreground;
    142 }
    143 
    144 element selected {
    145     background-color:               @selected;
    146     text-color:                     @foreground;
    147     border:                  		0px 0px 3px 0px;
    148     border-radius:                  15px;
    149     border-color:                  	@border-sel;
    150 }
    151 
    152 element selected.urgent {
    153     background-color:               @urgent;
    154     text-color:                     @foreground;
    155 }
    156 
    157 element selected.active {
    158     background-color:               @background-alt;
    159     color:                          @foreground;
    160 }