d0tfiles

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

Blurry.rasi (4082B)


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