summaryrefslogtreecommitdiff
path: root/.config/rofi/nord.rasi
diff options
context:
space:
mode:
authorAndrew Guschin <saintruler@gmail.com>2020-07-20 17:41:09 -0400
committerAndrew Guschin <saintruler@gmail.com>2020-07-20 17:41:09 -0400
commitc98424f9880569b0e50831e7d3079c35519d76b8 (patch)
tree900c2132ca65084461f9409e70f273c8be914ea2 /.config/rofi/nord.rasi
parentf4173cd2c510631049bac9399e013a770764811e (diff)
Added missing files
Diffstat (limited to '.config/rofi/nord.rasi')
-rw-r--r--.config/rofi/nord.rasi63
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;
+}