d0tfiles

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

Launchpad.rasi (4181B)


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