From 7fa17d7de89d5b94e301c8d53b6f3dbf77c67f79 Mon Sep 17 00:00:00 2001 From: adrien Date: Sat, 11 Sep 2021 18:42:19 +0200 Subject: [PATCH] Add new Rofi config --- .config/rofi/config | 33 --------------------------------- .config/rofi/config.rasi | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 33 deletions(-) delete mode 100644 .config/rofi/config create mode 100644 .config/rofi/config.rasi diff --git a/.config/rofi/config b/.config/rofi/config deleted file mode 100644 index 74b1801..0000000 --- a/.config/rofi/config +++ /dev/null @@ -1,33 +0,0 @@ -rofi.color-enabled: true - -! Window: 'background', 'border', 'separator' -rofi.color-window: argb:cc252936, #9575cd, argb:ffffffff - -! State: 'bg', 'fg', 'altbg', 'hlbg', hlfg -rofi.color-normal: argb:00252936, #ffffff, argb:00252936, argb:009575cd, #ff9575cd -rofi.color-active: argb:00252936, #252936, argb:00252936, argb:009575cd, #ffc000 -rofi.color-urgent: argb:00252936, #ff0000, argb:00252936, argb:00252936, #ff0000 - -rofi.width: 100 -rofi.padding: 400 -rofi.line-margin: 15 -rofi.lines: 5 -rofi.separator-style: none -rofi.columns: 1 -rofi.font: Agave Nerd Font 22 -rofi.bw: 0 -rofi.eh: 2 -rofi.hide-scrollbar: true -rofi.auto-select: true - -rofi.terminal: alacritty -rofi.ssh-client: ssh -rofi.ssh-command: {terminal} -e {ssh-client} {host} -rofi.run-command: {cmd} -rofi.run-shell-command: {terminal} -e {cmd} -rofi.disable-history: false -rofi.levenshtein-sort: false -rofi.case-sensitive: false -rofi.auto-select: false -rofi.parse-hosts: false -rofi.parse-known-hosts: false diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 0000000..cb49e74 --- /dev/null +++ b/.config/rofi/config.rasi @@ -0,0 +1,15 @@ +* { + background-color: #282c34; + border-color: #282c34; + text-color: #bbc2cf; + font: "Agave Nerd Font 15"; + prompt-font: "Agave Nerd Font 15"; + prompt-background: #51afef; + prompt-foreground: #282c34; + prompt-padding: 4px; + alternate-normal-background: #1c1f24; + alternate-normal-foreground: @text-color; + selected-normal-background: #ae3f3e; + selected-normal-foreground: #ffffff; + spacing: 3; +}