diff options
author | Yigit Sever | 2021-10-30 19:35:02 +0300 |
---|---|---|
committer | Yigit Sever | 2021-10-30 19:35:02 +0300 |
commit | 80d68d8cd29875a62608f1b3f22c17b0ce8e49e1 (patch) | |
tree | 9678cbc9d48e2684ff4878870e7c9f19ef2bd8e2 /.config/rofi/config.rasi | |
parent | 25d11ccae0eb533bbbdae2f3535fac4bd64f3691 (diff) | |
download | dotfiles-80d68d8cd29875a62608f1b3f22c17b0ce8e49e1.tar.gz dotfiles-80d68d8cd29875a62608f1b3f22c17b0ce8e49e1.tar.bz2 dotfiles-80d68d8cd29875a62608f1b3f22c17b0ce8e49e1.zip |
rofi: add modes & prompt
Diffstat (limited to '.config/rofi/config.rasi')
-rw-r--r-- | .config/rofi/config.rasi | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi index 260674b..888713a 100644 --- a/.config/rofi/config.rasi +++ b/.config/rofi/config.rasi | |||
@@ -1,11 +1,13 @@ | |||
1 | configuration { | 1 | configuration { |
2 | modi: "drun,window"; | 2 | modi: "drun,window,ssh"; |
3 | font: "Iosevka 10"; | 3 | font: "Iosevka 10"; |
4 | drun-display-format: "{name} [<span weight='light' size='small'> | {generic}</span>]"; | 4 | drun-display-format: "{name} [<span weight='light' size='small'> | {generic}</span>]"; |
5 | sidebar-mode: false; | 5 | sidebar-mode: false; |
6 | show-icons: true; | 6 | show-icons: true; |
7 | icon-theme: "Qogir-dark"; | 7 | icon-theme: "Qogir-dark"; |
8 | terminal: "kitty"; | 8 | display-window: ""; |
9 | display-drun: "λ"; | ||
10 | display-ssh: ""; | ||
9 | } | 11 | } |
10 | 12 | ||
11 | @theme "/dev/null" | 13 | @theme "/dev/null" |
@@ -14,6 +16,7 @@ configuration { | |||
14 | bg: #191724; | 16 | bg: #191724; |
15 | fg: #e0def4; | 17 | fg: #e0def4; |
16 | button: #31748f; | 18 | button: #31748f; |
19 | rose: #ebbcba; | ||
17 | background-color: @bg; | 20 | background-color: @bg; |
18 | text-color: @fg; | 21 | text-color: @fg; |
19 | } | 22 | } |
@@ -23,7 +26,15 @@ window { | |||
23 | width: 40%; | 26 | width: 40%; |
24 | } | 27 | } |
25 | 28 | ||
26 | prompt { enabled: false; } | 29 | prompt { |
30 | placeholder-color: @fg; | ||
31 | expand: false; | ||
32 | border-radius: 8px; | ||
33 | padding: 1.5% 0.5%; | ||
34 | background-color: @rose; | ||
35 | text-color: @bg; | ||
36 | font: "Iosevka 14"; | ||
37 | } | ||
27 | 38 | ||
28 | entry { | 39 | entry { |
29 | placeholder: "search"; | 40 | placeholder: "search"; |