| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- /*
- *
- * Author : Aditya Shakya
- * Mail : adi1090x@gmail.com
- * Github : @adi1090x
- * Twitter : @adi1090x
- *
- */
- configuration {
- font: "Iosevka Nerd Font 12";
- fixed-num-lines: true;
- show-icons: false;
- sidebar-mode: true;
- scroll-method: 0;
- window-format: "[{w}] ··· {c} ··· {t}";
- click-to-exit: true;
- combi-hide-mode-prefix: false;
- display-window: "";
- display-windowcd: "";
- display-run: "";
- display-ssh: "";
- display-drun: "";
- display-combi: "";
- }
- @import "styles/colors.rasi"
- * {
- background-color: @bg;
- }
- window {
- border: 0px;
- border-color: @ac;
- border-radius: 0px;
- padding: 300px;
- width: 100%;
- height: 100%;
- }
- prompt {
- spacing: 0;
- border: 0;
- text-color: @fg;
- }
- textbox-prompt-colon {
- expand: false;
- str: " ";
- margin: 0px 4px 0px 0px;
- text-color: inherit;
- }
- entry {
- spacing: 0;
- text-color: @fg;
- }
- case-indicator {
- spacing: 0;
- text-color: @fg;
- }
- inputbar {
- spacing: 0px;
- text-color: @fg;
- padding: 1px;
- children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
- }
- mainbox {
- border: 0px;
- border-color: @ac;
- padding: 6;
- }
- listview {
- lines: 5;
- columns: 3;
- fixed-height: 0;
- border: 0px;
- border-color: @ac;
- spacing: 5px;
- scrollbar: false;
- padding: 25px 5px -20px 5px;
- }
- element-text, element-icon {
- background-color: #00000000;
- text-color: inherit;
- }
- element {
- border: 4px;
- border-radius: 4px;
- padding: 15px;
- }
- element normal.normal {
- background-color: @bg;
- text-color: @fg;
- }
- element normal.urgent {
- background-color: @bg;
- text-color: @red;
- }
- element normal.active {
- background-color: @bg;
- text-color: @fg;
- border-color: @green;
- }
- element selected.normal {
- background-color: @bg;
- text-color: @fg;
- border-color: @fg;
- }
- element selected.urgent {
- background-color: @bg;
- text-color: @red;
- }
- element selected.active {
- background-color: @bg;
- text-color: @fg;
- border-color: @fg;
- }
- element alternate.normal {
- background-color: @bg;
- text-color: @fg;
- }
- element alternate.urgent {
- background-color: @bg;
- text-color: @fg;
- }
- element alternate.active {
- background-color: @bg;
- text-color: @fg;
- }
- sidebar {
- border: 0px;
- border-color: @ac;
- border-radius: 0px;
- }
- button {
- horizontal-align: 0.5;
- vertical-align: 0.5;
- background-color: @se;
- margin: 5px;
- padding: 15px;
- text-color: @fg;
- border: 0px;
- border-radius: 4px;
- border-color: @fg;
- }
- button selected {
- background-color: @bg;
- text-color: @fg;
- border: 4px;
- border-radius: 4px;
- border-color: @fg;
- }
- scrollbar {
- width: 4px;
- border: 0px;
- handle-color: @fg;
- handle-width: 8px;
- padding: 0;
- }
- message {
- border: 0px;
- border-color: @ac;
- padding: 1px;
- }
- textbox {
- text-color: @fg;
- }
|