summaryrefslogtreecommitdiff
path: root/rofi/.config
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2026-06-21 19:01:25 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2026-06-21 19:07:53 +0100
commitaebda32c2a09fcbdc1e645f55a0c6de3b9a2cfaf (patch)
treebac91eea7c658a6836f5486da562e258e9a8aba0 /rofi/.config
parentb2e8d5fc138d1ee9bb0eb0e4e3bf524a45d9fe25 (diff)
Add bookmark management scripts
Diffstat (limited to 'rofi/.config')
-rw-r--r--rofi/.config/rofi/config.rasi3
-rw-r--r--rofi/.config/rofi/themes/nord.rasi76
2 files changed, 79 insertions, 0 deletions
diff --git a/rofi/.config/rofi/config.rasi b/rofi/.config/rofi/config.rasi
new file mode 100644
index 0000000..5d67754
--- /dev/null
+++ b/rofi/.config/rofi/config.rasi
@@ -0,0 +1,3 @@
+configuration {
+}
+@theme "~/.config/rofi/themes/nord.rasi"
diff --git a/rofi/.config/rofi/themes/nord.rasi b/rofi/.config/rofi/themes/nord.rasi
new file mode 100644
index 0000000..a98e108
--- /dev/null
+++ b/rofi/.config/rofi/themes/nord.rasi
@@ -0,0 +1,76 @@
+* {
+ /* Nord Color Palette Blueprint */
+ nord0: #2e3440; /* Polar Night (Base Background) */
+ nord1: #3b4252; /* Polar Night (Elevated Background) */
+ nord2: #434c5e; /* Polar Night (Selection Element) */
+ nord3: #4c566a; /* Polar Night (Comments/Muted Text) */
+ nord4: #d8dee9; /* Snow Storm (Primary Text) */
+ nord5: #e5e9f0; /* Snow Storm (Bright Text) */
+ nord6: #eceff4; /* Snow Storm (Blinding Text) */
+ nord7: #8fbcbb; /* Frost (Teal Accent) */
+ nord8: #88c0d0; /* Frost (Ice Blue Highlight) */
+ nord9: #81a1c1; /* Frost (Flat Blue) */
+ nord10: #5e81ac; /* Frost (Deep Blue) */
+
+ background-color: transparent;
+ text-color: @nord4;
+ accent-color: @nord8;
+
+ font: "JetBrains Mono 12";
+}
+
+window {
+ background-color: @nord0;
+ border-color: @accent-color;
+ border: 2px;
+ border-radius: 6px;
+ width: 550px;
+ location: center;
+ anchor: center;
+ padding: 14px;
+}
+
+inputbar {
+ spacing: 12px;
+ padding: 0px 0px 10px 0px;
+ border: 0px 0px 1px 0px;
+ border-color: @nord3;
+ children: [ prompt, entry ];
+}
+
+prompt {
+ text-color: @accent-color;
+ font: "JetBrains Mono Bold 12";
+}
+
+entry {
+ text-color: @nord5;
+ placeholder: "Search...";
+ placeholder-color: @nord3;
+}
+
+listview {
+ lines: 12;
+ columns: 1;
+ fixed-height: false;
+ spacing: 4px;
+ padding: 8px 0px 0px 0px;
+}
+
+element {
+ padding: 6px 10px;
+ border-radius: 4px;
+}
+
+element normal text {
+ text-color: @nord4;
+}
+
+element selected {
+ background-color: @nord2; /* Highlight bar color */
+}
+
+element selected text {
+ text-color: @nord6; /* Text inside the highlight bar */
+ font: "JetBrains Mono Bold 12";
+}