d0tfiles

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

Gnome_Do.rasi (5804B)


      1 configuration {
      2     font:                           "FantasqueSansMono Nerd Font 12";
      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 /* -- Classical -- */
     16 * {
     17     background:                     #27639AFF;
     18     background-color:               #27639AFF;
     19     background-entry:               #00000033;
     20     background-alt:                 #f2f2f240;
     21     foreground:                     #f2f2f2EE;
     22     foreground-selected:            #ffffffFF;
     23     urgent:                         #E91E6366;
     24     urgent-selected:                #E91E6377;
     25 }
     26 
     27 /* -- Transparent -- */
     28 /*
     29 * {
     30     background:                     #00000000;
     31     background-color:               #00000066;
     32     background-entry:               #00000033;
     33     background-alt:                 #f2f2f215;
     34     foreground:                     #f2f2f2EE;
     35     foreground-selected:            #ffffffFF;
     36     urgent:                         #E91E6366;
     37     urgent-selected:                #E91E6377;
     38 }
     39 */
     40 
     41 /* -- Light -- */
     42 /*
     43 * {
     44     background:                     #e5e5e5ff;
     45     background-color:               #e5e5e5ff;
     46     background-entry:               #00000033;
     47     background-alt:                 #20202040;
     48     foreground:                     #404040EE;
     49     foreground-selected:            #252525FF;
     50     urgent:                         #E91E6366;
     51     urgent-selected:                #E91E6377;
     52 }
     53 */
     54 
     55 /* -- Dark -- */
     56 /*
     57 * {
     58     background:                     #252525ff;
     59     background-color:               #252525ff;
     60     background-entry:               #00000033;
     61     background-alt:                 #10101040;
     62     foreground:                     #e5e5e5EE;
     63     foreground-selected:            #ffffffFF;
     64     urgent:                         #E91E6366;
     65     urgent-selected:                #E91E6377;
     66 }
     67 */
     68 
     69 /* -- Black -- */
     70 /*
     71 * {
     72     background:                     #000000ff;
     73     background-color:               #000000ff;
     74     background-entry:               #00000033;
     75     background-alt:                 #101010ff;
     76     foreground:                     #e5e5e5EE;
     77     foreground-selected:            #ffffffFF;
     78     urgent:                         #E91E6366;
     79     urgent-selected:                #E91E6377;
     80 }
     81 */
     82 
     83 window {
     84     transparency:                   "real";
     85     background-color:               @background;
     86     text-color:                     @foreground;
     87     border-radius:                  25px;
     88     width:                          30%;
     89     location:                       center;
     90     anchor:                         center;
     91     x-offset:                       0;
     92     y-offset:                       0;
     93 }
     94 
     95 prompt {
     96     enabled: 						false;
     97 	padding: 						0px 8px 0px 4px;
     98 	background-color: 				@background;
     99 	text-color: 					@foreground;
    100 	font:							"FantasqueSansMono Nerd Font 10";
    101 }
    102 
    103 inputbar {
    104     background-color:               @background;
    105     text-color:                     @foreground;
    106     expand:                         false;
    107     border-radius:                  30px;
    108     margin:                         0px 0px 0px 0px;
    109     padding:                        5px 5px 5px 5px;
    110     position:                       center;
    111 }
    112 
    113 
    114 entry {
    115     background-color:               @background;
    116     text-color:                     @foreground;
    117     placeholder-color:              @foreground;
    118     expand:                         true;
    119     horizontal-align:               0.5;
    120     placeholder:                    "  Search";
    121     blink:                          true;
    122 	font:							"FantasqueSansMono Nerd Font 10";
    123 }
    124 
    125 case-indicator {
    126     background-color:               @background;
    127     text-color:                     @foreground;
    128     spacing:                        0;
    129 }
    130 
    131 
    132 listview {
    133     background-color:               @background;
    134     columns:                        2;
    135     lines:	                        1;
    136     spacing:                        4px;
    137     cycle:                          true;
    138     dynamic:                        true;
    139     layout:                         vertical;
    140 }
    141 
    142 mainbox {
    143     background-color:               @background-color;
    144     children:                       [ inputbar, listview ];
    145     spacing:                        10px;
    146     padding:                        10px 10px 10px 10px;
    147 }
    148 
    149 element {
    150     background-color:               @background;
    151     text-color:                     @foreground;
    152     orientation:                    vertical;
    153     border-radius:                  25px;
    154     padding:                        30px 0px 30px 0px;
    155 }
    156 
    157 element-icon {
    158     size:                           86px;
    159     border:                         0px;
    160 }
    161 
    162 element-text {
    163     expand:                         true;
    164     horizontal-align:               0.5;
    165     vertical-align:                 0.5;
    166     margin:                         5px 10px 0px 10px;
    167 }
    168 
    169 element normal.urgent,
    170 element alternate.urgent {
    171     background-color:               @urgent;
    172     text-color:                     @foreground;
    173     border-radius:                  9px;
    174 }
    175 
    176 element normal.active,
    177 element alternate.active {
    178     background-color:               @background-alt;
    179     text-color:                     @foreground;
    180 }
    181 
    182 element selected {
    183     background-color:               @background-alt;
    184     text-color:                     @foreground-selected;
    185 }
    186 
    187 element selected.urgent {
    188     background-color:               @urgent-selected;
    189     text-color:                     @foreground;
    190 }
    191 
    192 element selected.active {
    193     background-color:               @background-alt;
    194     color:                          @foreground-selected;
    195 }