diff options
Diffstat (limited to '.config/rofi/nord.rasi')
| -rw-r--r-- | .config/rofi/nord.rasi | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/.config/rofi/nord.rasi b/.config/rofi/nord.rasi new file mode 100644 index 0000000..b939fe3 --- /dev/null +++ b/.config/rofi/nord.rasi @@ -0,0 +1,63 @@ +configuration { + show-icons: true; + display-run: " "; + display-drun: " "; + display-window: " "; + modi: "window,run,drun"; +} + +* { + background-color: #2E3440; + bg-alt: #3B4252; + fg: #ECEFF4; + + nord-blue-light: #88C0D0; + nord-yellow: #EBCB8B; + + border: 0; + lines: 12; + padding: 0; + margin: 0; + spacing: 0; +} + +window { + width: 30%; + transparency: "real"; +} + +mainbox { + children: [inputbar, listview]; +} + +listview { + columns: 1; +} + +element { + padding: 12; + orientation: vertical; + text-color: @fg; +} + +element selected { + background-color: @bg-alt; + text-color: @nord-blue-light; +} + +inputbar { + background-color: @background; + children: [prompt, entry]; +} + +prompt { + enabled: true; + font: "SauceCodePro Nerd Font 12"; + padding: 12 0 0 12; + text-color: @nord-yellow; +} + +entry { + padding: 12; + text-color: @nord-yellow; +} |