aboutsummaryrefslogtreecommitdiffstats
path: root/config/rofi
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2026-07-10 11:21:24 -0700
committerPinapelz <yukais@pinapelz.com>2026-07-10 11:21:24 -0700
commit24de2a31a52d17b6f7214197bdbfeab7428742dd (patch)
treef7736c4712d5a394525a3da2f2b4294e81ba9540 /config/rofi
parent861bf5be200bfcf2440fec4cda911d29ec18493f (diff)
parentbca86bbec4757cec1f6f5bdea2ed210542f10fae (diff)
Merge remote-tracking branch 'upstream'
Diffstat (limited to 'config/rofi')
-rw-r--r--config/rofi/config-layout.rasi63
-rw-r--r--config/rofi/config-starship.rasi63
-rw-r--r--config/rofi/themes/KooL_style-1.rasi2
-rw-r--r--config/rofi/themes/KooL_style-13-Vertical.rasi2
-rw-r--r--config/rofi/themes/KooL_style-3-FullScreen-v1.rasi2
-rw-r--r--config/rofi/themes/KooL_style-5.rasi2
-rw-r--r--config/rofi/themes/KooL_style-6.rasi2
-rw-r--r--config/rofi/themes/KooL_style-8.rasi2
8 files changed, 132 insertions, 6 deletions
diff --git a/config/rofi/config-layout.rasi b/config/rofi/config-layout.rasi
new file mode 100644
index 00000000..d94178cd
--- /dev/null
+++ b/config/rofi/config-layout.rasi
@@ -0,0 +1,63 @@
+/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */
+/* Layout Selector (compact) */
+
+@import "~/.config/rofi/config-rofi-theme.rasi"
+
+/* ---- Mainbox ---- */
+mainbox {
+ children: [ "message", "listview" ];
+ spacing: 10px;
+ padding: 12px;
+}
+
+/* ---- Window ---- */
+window {
+ width: 520px;
+ height: 320px;
+}
+
+/* ---- Entry ---- */
+entry {
+ enabled: false;
+}
+
+/* ---- Message ---- */
+message {
+ enabled: true;
+ margin: 0px 6px 0px 6px;
+ padding: 10px;
+ border-radius: 10px;
+ background-color: inherit;
+}
+
+textbox {
+ text-color: inherit;
+ background-color: inherit;
+}
+
+/* ---- Listview ---- */
+listview {
+ columns: 1;
+ lines: 4;
+ fixed-height: true;
+ margin: 8px 10px;
+ padding: 6px;
+ scrollbar: false;
+ spacing: 4px;
+ cycle: true;
+}
+
+element {
+ padding: 6px;
+}
+
+/* ---- Elements ---- */
+element-icon {
+ size: 0%;
+}
+element-text {
+ horizontal-align: 0.0;
+ vertical-align: 0.5;
+ margin: 0px;
+ padding: 0px;
+}
diff --git a/config/rofi/config-starship.rasi b/config/rofi/config-starship.rasi
new file mode 100644
index 00000000..983f8658
--- /dev/null
+++ b/config/rofi/config-starship.rasi
@@ -0,0 +1,63 @@
+/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */
+/* Starship Selector (tall) */
+
+@import "~/.config/rofi/config-rofi-theme.rasi"
+
+/* ---- Mainbox ---- */
+mainbox {
+ children: [ "message", "listview" ];
+ spacing: 10px;
+ padding: 12px;
+}
+
+/* ---- Window ---- */
+window {
+ width: 520px;
+ height: 620;
+}
+
+/* ---- Entry ---- */
+entry {
+ enabled: false;
+}
+
+/* ---- Message ---- */
+message {
+ enabled: true;
+ margin: 0px 6px 0px 6px;
+ padding: 10px;
+ border-radius: 10px;
+ background-color: inherit;
+}
+
+textbox {
+ text-color: inherit;
+ background-color: inherit;
+}
+
+/* ---- Listview ---- */
+listview {
+ columns: 1;
+ lines: 13;
+ fixed-height: true;
+ margin: 8px 10px;
+ padding: 6px;
+ scrollbar: false;
+ spacing: 4px;
+ cycle: true;
+}
+
+element {
+ padding: 6px;
+}
+
+/* ---- Elements ---- */
+element-icon {
+ size: 0%;
+}
+element-text {
+ horizontal-align: 0.0;
+ vertical-align: 0.5;
+ margin: 0px;
+ padding: 0px;
+}
diff --git a/config/rofi/themes/KooL_style-1.rasi b/config/rofi/themes/KooL_style-1.rasi
index 6a3d8f08..fdfc955e 100644
--- a/config/rofi/themes/KooL_style-1.rasi
+++ b/config/rofi/themes/KooL_style-1.rasi
@@ -69,7 +69,7 @@ inputbar {
border-radius: 20px;
orientation: horizontal;
children: ["entry", "dummy", "mode-switcher" ];
- background-image: url("~/.config/rofi/.current_wallpaper", width);
+ background-image: url("~/.config/rofi/.current_wallpaper_focused", width);
}
/* ---- Entry input ---- */
diff --git a/config/rofi/themes/KooL_style-13-Vertical.rasi b/config/rofi/themes/KooL_style-13-Vertical.rasi
index 218251a4..e591f6b2 100644
--- a/config/rofi/themes/KooL_style-13-Vertical.rasi
+++ b/config/rofi/themes/KooL_style-13-Vertical.rasi
@@ -95,7 +95,7 @@ inputbar {
border-radius: 10px;
border-color: @border-color;
background-color: @background;
- background-image: url("~/.config/rofi/.current_wallpaper", width);
+ background-image: url("~/.config/rofi/.current_wallpaper_focused", width);
children: [ "textbox-prompt-colon","entry" ];
border: 0px;
}
diff --git a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi
index ab3107f1..591f078f 100644
--- a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi
+++ b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi
@@ -82,7 +82,7 @@ inputbar {
border-radius: 20px;
orientation: horizontal;
children: ["entry", "dummy", "mode-switcher" ];
- background-image: url("~/.config/rofi/.current_wallpaper", width);
+ background-image: url("~/.config/rofi/.current_wallpaper_focused", width);
}
/* ---- Entry input ---- */
diff --git a/config/rofi/themes/KooL_style-5.rasi b/config/rofi/themes/KooL_style-5.rasi
index 8370158c..0c22762d 100644
--- a/config/rofi/themes/KooL_style-5.rasi
+++ b/config/rofi/themes/KooL_style-5.rasi
@@ -59,7 +59,7 @@ mainbox {
enabled: true;
orientation: vertical;
padding: 8px;
- background-image: url("~/.config/rofi/.current_wallpaper", width);
+ background-image: url("~/.config/rofi/.current_wallpaper_focused", width);
children: [ "inputbar", "listbox" ];
border-radius: 12px;
}
diff --git a/config/rofi/themes/KooL_style-6.rasi b/config/rofi/themes/KooL_style-6.rasi
index 1172fb92..8320ecc8 100644
--- a/config/rofi/themes/KooL_style-6.rasi
+++ b/config/rofi/themes/KooL_style-6.rasi
@@ -69,7 +69,7 @@ inputbar {
border-radius: 25px;
orientation: horizontal;
children: ["entry", "dummy", "mode-switcher" ];
- background-image: url("~/.config/rofi/.current_wallpaper", width);
+ background-image: url("~/.config/rofi/.current_wallpaper_focused", width);
}
/* ---- Entry input ---- */
diff --git a/config/rofi/themes/KooL_style-8.rasi b/config/rofi/themes/KooL_style-8.rasi
index b369ea96..80265dc6 100644
--- a/config/rofi/themes/KooL_style-8.rasi
+++ b/config/rofi/themes/KooL_style-8.rasi
@@ -66,7 +66,7 @@ inputbar {
padding: 4em;
children: [ "textbox-prompt-colon", "entry" ];
background-color: transparent;
- background-image: url("~/.config/rofi/.current_wallpaper", width);
+ background-image: url("~/.config/rofi/.current_wallpaper_focused", width);
}
textbox-prompt-colon {
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage