diff options
author | Luca Matei Pintilie <lucafulger@gmail.com> | 2021-12-21 20:26:50 +0000 |
---|---|---|
committer | Luca Matei Pintilie <lucafulger@gmail.com> | 2021-12-21 20:26:50 +0000 |
commit | f8acb4edc93d2570856381eb7fb6f75db3955cf6 (patch) | |
tree | d8db466f88799f7d796e0b93d6a2ad8394c599c9 /.config/rofi | |
parent | 2169a4155362a7f1639e4ad78033abb193f2d565 (diff) | |
download | dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.gz dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.bz2 dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.lz dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.xz dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.zst dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.zip |
Initial commit2
Diffstat (limited to '.config/rofi')
-rw-r--r-- | .config/rofi/config.rasi | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 0000000..7f633a0 --- /dev/null +++ b/.config/rofi/config.rasi @@ -0,0 +1,93 @@ +configuration{ + modi: "drun"; + lines: 5; + font: "Iosevka 12"; + show-icons: true; + icon-theme: "Oranchelo"; + terminal: "alacritty"; + drun-display-format: "{icon} {name}"; + display-drun: " "; + location: 0; + separator-style: "solid"; + disable-history: false; + hide-scrollbar: true; +} + +@theme "/dev/null" + +element-text, element-icon { + background-color: inherit; + text-color: inherit; +} + +* { + dark-black: #1e2122; + bg-col: #222526; + border-col: #282b2c; + selected-col: #282b2c; + blue: #8dae88; + fg-col: #d4be98; + fg-col2: #df736d; + width: 600; +} + +window { + padding: 20px; + height: 360px; + border: 3px; + border-color: @border-col; + background-color: @bg-col; +} + +mainbox { + padding: 5px; + border-radius: 13px; + background-color: @bg-col; +} + +inputbar { + children: [prompt,entry]; + background-color: @bg-col; + border-radius: 5px; + padding: 2px; +} + +prompt { + background-color: @blue; + padding: 5px 5px 0px; + text-color: @bg-col; + border-radius: 3px; +} + +textbox-prompt-colon { + expand: false; + str: ":"; +} + +entry { + padding: 6px; + text-color: @fg-col; + background-color: @bg-col; +} + +listview { + border: 0px 0px 0px; + padding: 6px 0px 0px; + columns: 2; + background-color: @bg-col; +} + +element { + padding: 5px; + background-color: @bg-col; + text-color: @fg-col ; +} + +element-icon { + size: 25px; +} + +element selected { + background-color: @selected-col ; + text-color: @fg-col2 ; +} |