d0tfiles

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

Row_Circle.rasi (4094B)


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