Configuration files
at dev 3.9 kB view raw
1configuration { 2 lines: 10; 3 columns: 1; 4 font: "MononokiNerdFont-Regular 14"; 5 bw: 0; 6 location: 0; 7 padding: 0; 8 fixed-num-lines: true; 9 show-icons: false; 10 sidebar-mode: false; 11 separator-style: "none"; 12 hide-scrollbar: true; 13 fullscreen: false; 14 fake-transparency: false; 15 scroll-method: 0; 16 window-format: "[{w}] ··· {c} ··· {t}"; 17 click-to-exit: true; 18 show-match: false; 19 combi-hide-mode-prefix: false; 20 display-window: " "; 21 display-windowcd: " "; 22 display-run: " "; 23 display-ssh: " "; 24 display-drun: ""; 25} 26 27@import "./colors.rasi" 28 29* { 30 background-color: @normal-background; 31} 32 33window { 34 border: 2px; 35 border-color: @active-background; 36 background-color: @normal-background; 37 border-radius: 15px; 38 width: 35%; 39} 40 41prompt { 42 spacing: 0; 43 border: 0; 44 text-color: @urgent-foreground; 45} 46 47textbox-prompt-colon { 48 expand: false; 49 str: " "; 50 margin: 0px 4px 0px 0px; 51 text-color: inherit; 52} 53 54entry { 55 spacing: 0; 56 text-color: @active-foreground; 57} 58 59case-indicator { 60 spacing: 0; 61 text-color: @active-foreground; 62} 63 64inputbar { 65 spacing: 0px; 66 text-color: @active-foreground; 67 padding: 10px; 68 children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; 69} 70 71mainbox { 72 border: 0px; 73 border-color: @active-foreground; 74 border-radius: 15px; 75 padding: 6; 76} 77 78listview { 79 fixed-height: 0; 80 border: 0px; 81 border-color: @ac; 82 spacing: 4px; 83 scrollbar: false; 84 padding: 5px 5px 0px 5px; 85} 86 87element { 88 border: 0px; 89 border-radius: 4px; 90 padding: 5px; 91} 92element normal.normal { 93 background-color: @normal-background; 94 text-color: @active-foreground; 95} 96element normal.urgent { 97 background-color: @normal-background; 98 text-color: @urgent-background; 99} 100element normal.active { 101 background-color: @active-background; 102 text-color: @normal-background; 103} 104element selected.normal { 105 background-color: @normal-background; 106 text-color: @active-background; 107} 108element selected.urgent { 109 background-color: @normal-background; 110 text-color: @active-background; 111} 112element selected.active { 113 background-color: @active-background; 114 text-color: @active-background; 115} 116element alternate.normal { 117 background-color: @normal-background; 118 text-color: @active-foreground; 119} 120element alternate.urgent { 121 background-color: @normal-background; 122 text-color: @urgent-background; 123} 124element alternate.active { 125 background-color: @active-background; 126 text-color: @active-foreground; 127} 128 129element-text, element-icon { 130 background-color: inherit; 131 text-color: inherit; 132} 133 134sidebar { 135 border: 0px; 136 border-color: @ac; 137 border-radius: 0px; 138} 139 140button { 141 background-color: @fg; 142 margin: 5px; 143 padding: 5px; 144 text-color: @bg; 145 border: 0px; 146 border-radius: 4px; 147 border-color: @fg; 148} 149 150button selected { 151 background-color: @active-background; 152 text-color: @active-foreground; 153 border: 0px; 154 border-radius: 4px; 155 border-color: @fg; 156} 157 158scrollbar { 159 width: 4px; 160 border: 0px; 161 handle-color: @fg; 162 handle-width: 8px; 163 padding: 0; 164} 165 166message { 167 border: 0px; 168 border-color: @active-background; 169 padding: 1px; 170} 171 172textbox { 173 text-color: @active-background; 174}