d0tfiles

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

Blurry_Full.rasi (3891B)


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