aboutsummaryrefslogtreecommitdiffstats
path: root/config/rofi/themes/KooL_style-6.rasi
diff options
context:
space:
mode:
authorJaKooLit <ejhay.games@gmail.com>2025-02-15 12:42:11 +0900
committerJaKooLit <ejhay.games@gmail.com>2025-02-15 12:42:11 +0900
commit1d714a5ea76fd19d530b9d06ce9b73627d8224d9 (patch)
tree31e4e71e7b5e93a6c555a9b5507744cc2e6e12c5 /config/rofi/themes/KooL_style-6.rasi
parentadee3e65f23b3bff8466a2b8d0bc54eb75d9b095 (diff)
updated rofi theme handling
Diffstat (limited to 'config/rofi/themes/KooL_style-6.rasi')
-rw-r--r--config/rofi/themes/KooL_style-6.rasi241
1 files changed, 241 insertions, 0 deletions
diff --git a/config/rofi/themes/KooL_style-6.rasi b/config/rofi/themes/KooL_style-6.rasi
new file mode 100644
index 00000000..369c0854
--- /dev/null
+++ b/config/rofi/themes/KooL_style-6.rasi
@@ -0,0 +1,241 @@
+/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
+/* KooL Hyprland Rofi Style 6 */
+
+/* ---- Configuration ---- */
+
+configuration {
+ modi: "drun,run,filebrowser";
+ show-icons: true;
+ display-drun: "Apps";
+ display-run: "Run";
+ display-filebrowser: "Files";
+ display-window: "Windows";
+ drun-display-format: "{name}";
+ hover-select: true;
+ me-select-entry: "MouseSecondary";
+ me-accept-entry: "MousePrimary";
+ window-format: "{w} · {c} · {t}";
+ dpi: 1;
+}
+
+/* ---- Load wallust colors ---- */
+@theme "~/.config/rofi/wallust/colors-rofi.rasi"
+
+/* ---- Global Properties ---- */
+* {
+
+ background-alt: @color1;
+ selected: @color12;
+ active: @color11;
+ urgent: red;
+
+ text-selected: @background;
+ text-color: @foreground;
+ border-color: @selected;
+}
+
+/*****-- Elements Font Size -----*****/
+element-text {
+ font: "JetBrainsMono Nerd Font SemiBold 12";
+}
+
+/* ---- Window ---- */
+window {
+ // Default
+ enabled: true;
+ fullscreen: false;
+ transparency: "real";
+ cursor: "default";
+ spacing: 0px;
+ border: 2px;
+ border-radius: 30px;
+ location: center;
+ anchor: center;
+
+ // Style Values
+ width: 50%;
+ background-color: #00000099;
+}
+
+/* ----- Main Box ----- */
+mainbox {
+ enabled: true;
+ orientation: vertical;
+ children: [ "inputbar", "listbox" ];
+ background-color: transparent;
+}
+
+
+/* ---- Inputbar ---- */
+inputbar {
+ enabled: true;
+ padding: 10px 10px 150px 10px;
+ margin: 10px;
+ background-color: transparent;
+ border-radius: 25px;
+ orientation: horizontal;
+ children: ["entry", "dummy", "mode-switcher" ];
+ background-image: url("~/.config/rofi/.current_wallpaper", width);
+}
+
+/* ---- Entry input ---- */
+entry {
+ enabled: true;
+ expand: false;
+ width: 300px;
+ padding: 10px;
+ border-radius: 12px;
+ background-color: @background;
+ text-color: inherit;
+ cursor: text;
+ placeholder: " Search "; // << Search symbol
+ placeholder-color: inherit;
+}
+
+/* ---- Listbox ---- */
+listbox {
+ spacing: 10px;
+ padding: 10px;
+ background-color: transparent;
+ orientation: vertical;
+ children: [ "message", "listview" ];
+}
+
+/* ---- Listview ---- */
+listview {
+ enabled: true;
+ columns: 2;
+ lines: 6;
+ cycle: true;
+ dynamic: true;
+ scrollbar: false;
+ layout: vertical;
+ reverse: false;
+ fixed-height: true;
+ fixed-columns: true;
+ spacing: 10px;
+ padding: 10px;
+ background-color: transparent;
+
+// Adapt rofi theme
+ border: 0px;
+}
+
+/* ---- Scrollbar ---- */
+scrollbar {
+ border: 0px;
+ border-radius: 10px;
+ background-color: transparent;
+ handle-color: @active;
+ handle-width: 5px ;
+ padding: 0;
+}
+/* ---- Dummy ---- */
+dummy {
+ expand: true;
+ background-color: transparent;
+}
+
+/* ---- Mode Switcher ---- */
+mode-switcher{
+ enabled: true;
+ spacing: 10px;
+ background-color: transparent;
+}
+button {
+ width: 5%;
+ padding: 12px;
+ border-radius: 12px;
+ background-color: @background;
+ text-color: inherit;
+ cursor: pointer;
+}
+button selected {
+ background-color: @active;
+ text-color: @text-selected;
+}
+
+
+/* ---- Elements ---- */
+element {
+ enabled: true;
+ spacing: 10px;
+ padding: 4px;
+ border-radius: 10px;
+ background-color: transparent;
+ cursor: pointer;
+}
+
+element normal.normal {
+ background-color: inherit;
+ text-color: inherit;
+}
+element normal.urgent {
+ background-color: @urgent;
+ text-color: @foreground;
+}
+element normal.active {
+ background-color: @active;
+ text-color: @foreground;
+}
+
+element selected.normal {
+ background-color: @color11;
+ text-color: @text-selected;
+}
+element selected.urgent {
+ background-color: @urgent;
+ text-color: @text-selected;
+}
+element selected.active {
+ background-color: @urgent;
+ text-color: @text-selected;
+}
+// Adapt rofi theme
+element alternate.normal {
+ background-color: transparent;
+ text-color: inherit;
+}
+element alternate.urgent {
+ background-color: transparent;
+ text-color: inherit;
+}
+element alternate.active {
+ background-color: transparent;
+ text-color: inherit;
+}
+element-icon {
+ background-color: transparent;
+ text-color: inherit;
+ size: 36px;
+ cursor: inherit;
+}
+element-text {
+ background-color: transparent;
+ text-color: inherit;
+ cursor: inherit;
+ vertical-align: 0.5;
+ horizontal-align: 0.0;
+
+}
+
+/* ---- Message ---- */
+message {
+ background-color: @background;
+ border: 0px;
+}
+textbox {
+ margin: 10px;
+ padding: 12px;
+ border-radius: 10px;
+ background-color: @active;
+ text-color: @foreground;
+ vertical-align: 0.5;
+ horizontal-align: 0.5;
+}
+error-message {
+ padding: 12px;
+ border-radius: 20px;
+ background-color: @background;
+ text-color: @foreground;
+}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage