d0tfiles

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

Full_Rounded.rasi (4047B)


      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:                     true;
      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:                         100%;
     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 8px;
     39 }
     40 
     41 inputbar {
     42 	children: 						[ textbox-prompt-colon, prompt ];
     43     background-color:               @background-alt;
     44     text-color:                     @foreground;
     45     expand:                         false;
     46     border:                  		1px;
     47     border-radius:                  10px;
     48     border-color:                  	@border;
     49     margin:                         0px 60% 0px 0px;
     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% 30% 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:                        30% 0% 0% 7.5%;
     86 }
     87 
     88 element {
     89     background-color:               @background-alt;
     90     text-color:                     @foreground;
     91     orientation:                    horizontal;
     92     border-radius:                  10px;
     93     padding:                        0px 0px 0px -5px;
     94 }
     95 
     96 element-icon {
     97     size:                           65px;
     98     border:                         0px;
     99 }
    100 
    101 element-text {
    102 	font:							"feather 64";
    103     expand:                         true;
    104     horizontal-align:               0.5;
    105     vertical-align:                 0.5;
    106     margin:                         60px 60px 60px 65px;
    107 }
    108 
    109 element normal.urgent,
    110 element alternate.urgent {
    111     background-color:               @urgent;
    112     text-color:                     @foreground;
    113     border-radius:                  10px;
    114 }
    115 
    116 element normal.active,
    117 element alternate.active {
    118     background-color:               @background-alt;
    119     text-color:                     @foreground;
    120 }
    121 
    122 element selected {
    123     background-color:               @selected;
    124     text-color:                     @foreground;
    125     border:                  		1px;
    126     border-radius:                  10px;
    127     border-color:                  	@border;
    128 }
    129 
    130 element selected.urgent {
    131     background-color:               @urgent;
    132     text-color:                     @foreground;
    133 }
    134 
    135 element selected.active {
    136     background-color:               @background-alt;
    137     color:                          @foreground;
    138 }