d0tfiles

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

Ribbon_Full_Bottom.rasi (4121B)


      1 configuration {
      2     font:                           "FantasqueSansMono Nerd Font 10";
      3     show-icons:                     true;
      4 	icon-theme: 					"Oranchelo";
      5     display-drun: 					"";
      6     drun-display-format:            "{name}";
      7     threads:                        0;
      8     scroll-method:                  0;
      9     disable-history:                false;
     10     fullscreen:                     true;
     11 	hide-scrollbar: 				true;
     12 	sidebar-mode: 					false;
     13 }
     14 
     15 @import "styles/colors.rasi"
     16 
     17 window {
     18     transparency:                   "real";
     19     background-color:               @background;
     20     text-color:                     @foreground;
     21 	border:							0% 0% 3% 0%;
     22 	border-color:					@border;
     23     border-radius:                  0% 0% 0% 0%;
     24     height:                         70%;
     25     width:                          55%;
     26     location:                       center;
     27     anchor:                         center;
     28     x-offset:                       0;
     29     y-offset:                       0;
     30 }
     31 
     32 prompt {
     33     enabled: 						true;
     34 	padding: 						0.7% 0.7% 0% 0%;
     35 	background-color: 				@background;
     36 	text-color: 					@foreground;
     37 	font:							"FantasqueSansMono Nerd Font 9";
     38 }
     39 
     40 
     41 inputbar {
     42     background-color:               @background;
     43     text-color:                     @foreground;
     44     expand:                         false;
     45 	border:							0% 0% 0.7% 0%;
     46 	border-color:					@border-alt;
     47     border-radius:                  0% 0% 0% 0%;
     48     margin:                         0.5% 55% 0% 0%;
     49     padding:                        0.7% 0.7% 0.7% 0.7%;
     50     position:                       center;
     51 }
     52 
     53 
     54 entry {
     55     background-color:               @background;
     56     text-color:                     @foreground;
     57     placeholder-color:              @foreground;
     58     expand:                         true;
     59     horizontal-align:               0;
     60     placeholder:                    "Search Applications";
     61     padding:                        0.7% 0% 0% 0%;
     62     blink:                          true;
     63 }
     64 
     65 case-indicator {
     66     background-color:               @background;
     67     text-color:                     @foreground;
     68     spacing:                        0;
     69 }
     70 
     71 
     72 listview {
     73     background-color:               @background;
     74     columns:                        8;
     75     spacing:                        1%;
     76     cycle:                          false;
     77     dynamic:                        true;
     78     layout:                         vertical;
     79 }
     80 
     81 mainbox {
     82     background-color:               @background;
     83 	border:							0% 0% 2.5% 0%;
     84     border-radius:                  0% 0% 0% 0%;
     85 	border-color:					@border-alt;
     86     children:                       [ inputbar, listview ];
     87     spacing:                       	2%;
     88     padding:                        8% 8% 8% 8%;
     89 }
     90 
     91 element {
     92     background-color:               @background;
     93     text-color:                     @foreground;
     94     orientation:                    vertical;
     95     border-radius:                  0%;
     96     padding:                        1% 0% 1% 0%;
     97 }
     98 
     99 element-icon {
    100     size:                           64px;
    101     border:                         0px;
    102 }
    103 
    104 element-text {
    105     expand:                         true;
    106     horizontal-align:               0.5;
    107     vertical-align:                 0.5;
    108     margin:                         0.5% 1% 0% 1%;
    109 }
    110 
    111 element normal.urgent,
    112 element alternate.urgent {
    113     background-color:               @urgent;
    114     text-color:                     @foreground;
    115     border-radius:                  1%;
    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:               @selected;
    126     text-color:                     @foreground;
    127 	border:							0% 0% 0.3% 0%;
    128     border-radius:                  0% 0% 0% 0%;
    129     border-color:                  	@border-alt;
    130 }
    131 
    132 element selected.urgent {
    133     background-color:               @urgent;
    134     text-color:                     @foreground;
    135 }
    136 
    137 element selected.active {
    138     background-color:               @background-alt;
    139     color:                          @foreground;
    140 }