summaryrefslogtreecommitdiff
path: root/files/old-config/rofi
diff options
context:
space:
mode:
authorShipwreckt <shipwreckt@mailfence.com>2025-02-22 07:10:10 +0000
committerShipwreckt <shipwreckt@mailfence.com>2025-02-22 07:10:10 +0000
commit971bbb74a02f83650c8cd0550fb91886c4d460fe (patch)
treed0d56e38ba28ddf37866ceb6b275ff5de48a0e40 /files/old-config/rofi
parent749b69e71e0475bcf1f4d7067414f55f830c9e8d (diff)
2nd initial commit
Diffstat (limited to 'files/old-config/rofi')
-rwxr-xr-xfiles/old-config/rofi/config.rasi8
-rwxr-xr-xfiles/old-config/rofi/themes/Dmenu.rasi84
-rwxr-xr-xfiles/old-config/rofi/themes/dtos-dmenu.rasi68
3 files changed, 160 insertions, 0 deletions
diff --git a/files/old-config/rofi/config.rasi b/files/old-config/rofi/config.rasi
new file mode 100755
index 0000000..c835578
--- /dev/null
+++ b/files/old-config/rofi/config.rasi
@@ -0,0 +1,8 @@
+configuration {
+ modi: "window,drun,ssh,combi";
+ font: "hack 10";
+ combi-modi: "window,drun,ssh";
+ }
+@theme "~/.config/rofi/themes/Dmenu.rasi"
+
+
diff --git a/files/old-config/rofi/themes/Dmenu.rasi b/files/old-config/rofi/themes/Dmenu.rasi
new file mode 100755
index 0000000..8b81a6c
--- /dev/null
+++ b/files/old-config/rofi/themes/Dmenu.rasi
@@ -0,0 +1,84 @@
+/**
+ _____ __ _ _____
+ | __ \ / _(_) | __ \
+ | |__) |___ | |_ _ | | | |_ __ ___ ___ _ __ _ _
+ | _ // _ \| _| | | | | | '_ ` _ \ / _ \ '_ \| | | |
+ | | \ \ (_) | | | | | |__| | | | | | | __/ | | | |_| |
+ |_| \_\___/|_| |_| |_____/|_| |_| |_|\___|_| |_|\__,_|
+
+ By ShipWreckt :D
+ Based off Derek Taylor's (DistroTube) https://gitlab.com/dwt1/dotfiles/-/blob/master/.config/rofi/themes/dtos-dmenu.rasi
+ */
+
+* {
+/*======================================================================
+Colours
+======================================================================*/
+ background-color: #1f1c22;
+ border-color: #2b1d2b;
+ prompt-background: #7a35bf;
+ prompt-foreground: #c7b1c8;
+ text-color: #9e889b;
+ selected-normal-background: #8b35e8;
+ selected-normal-foreground: #ffffff;
+/*======================================================================
+Misc
+======================================================================*/
+ height: 23px;
+ prompt-padding: 1px;
+ show-icons: true;
+ font: "SauceCodePro Nerd Font Mono 9";
+ prompt-font: "Ubuntu Bold 9";
+}
+
+/*======================================================================
+Window settings
+======================================================================*/
+#window {
+ anchor: north;
+ location: north;
+ width: 100%;
+ padding: 1px;
+ children: [ horibox ];
+}
+
+#horibox {
+ orientation: horizontal;
+ children: [ prompt, entry, listview ];
+}
+#prompt {
+ padding: @prompt-padding;
+ background-color: @prompt-background;
+ text-color: @prompt-foreground;
+ font: @prompt-font;
+}
+#listview {
+ layout: horizontal;
+ lines: 100;
+}
+#entry {
+ padding: 2px;
+ expand: false;
+ width: 10em;
+}
+#element {
+ padding: 2px 8px;
+}
+#element selected {
+ background-color: @selected-normal-background;
+ text-color: @selected-normal-foreground;
+}
+
+element-text {
+ background-color: inherit;
+ text-color: inherit;
+}
+
+/* Not actually relevant for this configuration, but it might
+be useful to someone having issues with their icons' background color
+
+element-icon {
+ background-color: inherit;
+}
+*/
+
diff --git a/files/old-config/rofi/themes/dtos-dmenu.rasi b/files/old-config/rofi/themes/dtos-dmenu.rasi
new file mode 100755
index 0000000..eefba6e
--- /dev/null
+++ b/files/old-config/rofi/themes/dtos-dmenu.rasi
@@ -0,0 +1,68 @@
+/**
+ * ROFI Color theme
+ * NAME: dt-dmenu.rasi
+ * DESCRIPTION: This is a horizontal prompt similar to dmenu.
+ * AUTHOR: Derek Taylor (DT)
+ */
+
+* {
+ background-color: #282c34;
+ border-color: #282c34;
+ text-color: #bbc2cf;
+ height: 25px;
+ font: "SauceCodePro Nerd Font Mono 9";
+ prompt-font: "Ubuntu Bold 9";
+ prompt-background: #51afef;
+ prompt-foreground: #282c34;
+ prompt-padding: 2px;
+ selected-normal-background: #ae3f3e;
+ selected-normal-foreground: #ffffff;
+ show-icons: true;
+}
+#window {
+ anchor: north;
+ location: north;
+ width: 80%;
+ padding: 1px;
+ children: [ horibox ];
+}
+#horibox {
+ orientation: horizontal;
+ children: [ prompt, entry, listview ];
+}
+#prompt {
+ padding: @prompt-padding;
+ background-color: @prompt-background;
+ text-color: @prompt-foreground;
+ font: @prompt-font;
+}
+#listview {
+ layout: horizontal;
+ lines: 100;
+}
+#entry {
+ padding: 2px;
+ expand: false;
+ width: 10em;
+}
+#element {
+ padding: 2px 8px;
+}
+#element selected {
+ background-color: @selected-normal-background;
+ text-color: @selected-normal-foreground;
+}
+
+element-text {
+ background-color: inherit;
+ text-color: inherit;
+}
+
+/* Not actually relevant for this configuration, but it might
+be useful to someone having issues with their icons' background color
+
+element-icon {
+ background-color: inherit;
+}
+*/
+