From 23400c3fe898328077ee775e857d47ecbaeebf1e Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Sun, 31 Mar 2019 15:10:38 +0300 Subject: Overhaul rofi config --- .config/rofi/config | 11 ------ .config/rofi/config.rasi | 101 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+), 11 deletions(-) delete mode 100644 .config/rofi/config create mode 100644 .config/rofi/config.rasi (limited to '.config/rofi') 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 @@ -rofi.color-enabled: true -rofi.color-window: #141021, #0a0f14, #195466 -rofi.color-normal: #141021, #ffeefc, #195466, #c23127, #ffeefc -rofi.color-active: #141021, #2aa889, #195466, #d26939, #ffeefc -rofi.color-urgent: #141021, #e4b226, #195466, #e4b226, #ffeefc -rofi.width: 800 -rofi.padding: 50 -rofi.font: Lato 18 -rofi.bw: 3 -rofi.separator-style: solid -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 @@ +/* + * ROFI One Dark + * + * Based on OneDark.vim (https://github.com/joshdick/onedark.vim) + * + * Author: Benjamin Stauss + * User: me-benni + * + */ + +configuration { + display-drun: "act"; + display-run: "run"; + display-window: "win"; + show-icons: true; +} + +* { + black: #3b4252; + red: #bf616a; + blue: #81a1c1; + cyan: #88c0d0; + emphasis: #bf616a; + text-alt: #d8dee9; + text: #d8dee9; + + spacing: 0; + background-color: transparent; + + font: "Fira Code 14"; + text-color: @text; +} + +window { + transparency: "real"; + fullscreen: true; + background-color: #2e3440dd; +} + +mainbox { + padding: 30% 30%; +} + +inputbar { + margin: 0px 0px 20px 0px; + children: [prompt, textbox-prompt-colon, entry, case-indicator]; +} + +prompt { + text-color: @blue; +} + +textbox-prompt-colon { + expand: false; + str: ":"; + text-color: @text-alt; +} + +entry { + margin: 0px 10px; +} + +listview { + spacing: 5px; + dynamic: true; + scrollbar: false; +} + +element { + padding: 5px; + text-color: @text-alt; + highlight: bold #ebcb8b; + border-radius: 3px; +} + +element selected { + background-color: @black; + text-color: @text; +} + +element urgent, element selected urgent { + text-color: @red; +} + +element active, element selected active { + text-color: @purple; +} + +message { + padding: 5px; + border-radius: 3px; + background-color: @emphasis; + border: 1px; + border-color: @cyan; +} + +button selected { + padding: 5px; + border-radius: 3px; + background-color: @emphasis; +} -- cgit v1.2.3-70-g09d2