diff options
| author | Yigit Sever | 2019-03-31 15:10:38 +0300 |
|---|---|---|
| committer | Yigit Sever | 2019-03-31 15:10:38 +0300 |
| commit | 23400c3fe898328077ee775e857d47ecbaeebf1e (patch) | |
| tree | 32593e29e9fb32803b51f4848726cd6e5cc9adfa /.config/rofi | |
| parent | d1d5b4824288809bd64982dd3391fe793ad9d86a (diff) | |
| download | dotfiles-23400c3fe898328077ee775e857d47ecbaeebf1e.tar.gz dotfiles-23400c3fe898328077ee775e857d47ecbaeebf1e.tar.bz2 dotfiles-23400c3fe898328077ee775e857d47ecbaeebf1e.zip | |
Overhaul rofi config
Diffstat (limited to '.config/rofi')
| -rw-r--r-- | .config/rofi/config | 11 | ||||
| -rw-r--r-- | .config/rofi/config.rasi | 101 |
2 files changed, 101 insertions, 11 deletions
diff --git a/.config/rofi/config b/.config/rofi/config deleted file mode 100644 index df6e244..0000000 --- a/.config/rofi/config +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | rofi.color-enabled: true | ||
| 2 | rofi.color-window: #141021, #0a0f14, #195466 | ||
| 3 | rofi.color-normal: #141021, #ffeefc, #195466, #c23127, #ffeefc | ||
| 4 | rofi.color-active: #141021, #2aa889, #195466, #d26939, #ffeefc | ||
| 5 | rofi.color-urgent: #141021, #e4b226, #195466, #e4b226, #ffeefc | ||
| 6 | rofi.width: 800 | ||
| 7 | rofi.padding: 50 | ||
| 8 | rofi.font: Lato 18 | ||
| 9 | rofi.bw: 3 | ||
| 10 | rofi.separator-style: solid | ||
| 11 | rofi.hide-scrollbar: true | ||
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 0000000..2902fcb --- /dev/null +++ b/.config/rofi/config.rasi | |||
| @@ -0,0 +1,101 @@ | |||
| 1 | /* | ||
| 2 | * ROFI One Dark | ||
| 3 | * | ||
| 4 | * Based on OneDark.vim (https://github.com/joshdick/onedark.vim) | ||
| 5 | * | ||
| 6 | * Author: Benjamin Stauss | ||
| 7 | * User: me-benni | ||
| 8 | * | ||
| 9 | */ | ||
| 10 | |||
| 11 | configuration { | ||
| 12 | display-drun: "act"; | ||
| 13 | display-run: "run"; | ||
| 14 | display-window: "win"; | ||
| 15 | show-icons: true; | ||
| 16 | } | ||
| 17 | |||
| 18 | * { | ||
| 19 | black: #3b4252; | ||
| 20 | red: #bf616a; | ||
| 21 | blue: #81a1c1; | ||
| 22 | cyan: #88c0d0; | ||
| 23 | emphasis: #bf616a; | ||
| 24 | text-alt: #d8dee9; | ||
| 25 | text: #d8dee9; | ||
| 26 | |||
| 27 | spacing: 0; | ||
| 28 | background-color: transparent; | ||
| 29 | |||
| 30 | font: "Fira Code 14"; | ||
| 31 | text-color: @text; | ||
| 32 | } | ||
| 33 | |||
| 34 | window { | ||
| 35 | transparency: "real"; | ||
| 36 | fullscreen: true; | ||
| 37 | background-color: #2e3440dd; | ||
| 38 | } | ||
| 39 | |||
| 40 | mainbox { | ||
| 41 | padding: 30% 30%; | ||
| 42 | } | ||
| 43 | |||
| 44 | inputbar { | ||
| 45 | margin: 0px 0px 20px 0px; | ||
| 46 | children: [prompt, textbox-prompt-colon, entry, case-indicator]; | ||
| 47 | } | ||
| 48 | |||
| 49 | prompt { | ||
| 50 | text-color: @blue; | ||
| 51 | } | ||
| 52 | |||
| 53 | textbox-prompt-colon { | ||
| 54 | expand: false; | ||
| 55 | str: ":"; | ||
| 56 | text-color: @text-alt; | ||
| 57 | } | ||
| 58 | |||
| 59 | entry { | ||
| 60 | margin: 0px 10px; | ||
| 61 | } | ||
| 62 | |||
| 63 | listview { | ||
| 64 | spacing: 5px; | ||
| 65 | dynamic: true; | ||
| 66 | scrollbar: false; | ||
| 67 | } | ||
| 68 | |||
| 69 | element { | ||
| 70 | padding: 5px; | ||
| 71 | text-color: @text-alt; | ||
| 72 | highlight: bold #ebcb8b; | ||
| 73 | border-radius: 3px; | ||
| 74 | } | ||
| 75 | |||
| 76 | element selected { | ||
| 77 | background-color: @black; | ||
| 78 | text-color: @text; | ||
| 79 | } | ||
| 80 | |||
| 81 | element urgent, element selected urgent { | ||
| 82 | text-color: @red; | ||
| 83 | } | ||
| 84 | |||
| 85 | element active, element selected active { | ||
| 86 | text-color: @purple; | ||
| 87 | } | ||
| 88 | |||
| 89 | message { | ||
| 90 | padding: 5px; | ||
| 91 | border-radius: 3px; | ||
| 92 | background-color: @emphasis; | ||
| 93 | border: 1px; | ||
| 94 | border-color: @cyan; | ||
| 95 | } | ||
| 96 | |||
| 97 | button selected { | ||
| 98 | padding: 5px; | ||
| 99 | border-radius: 3px; | ||
| 100 | background-color: @emphasis; | ||
| 101 | } | ||
