aboutsummaryrefslogtreecommitdiffstats
path: root/config/rofi/themes/KooL_style-9.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-9.rasi
parentadee3e65f23b3bff8466a2b8d0bc54eb75d9b095 (diff)
updated rofi theme handling
Diffstat (limited to 'config/rofi/themes/KooL_style-9.rasi')
-rw-r--r--config/rofi/themes/KooL_style-9.rasi212
1 files changed, 212 insertions, 0 deletions
diff --git a/config/rofi/themes/KooL_style-9.rasi b/config/rofi/themes/KooL_style-9.rasi
new file mode 100644
index 00000000..7c49d929
--- /dev/null
+++ b/config/rofi/themes/KooL_style-9.rasi
@@ -0,0 +1,212 @@
+/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
+/* KooL Hyprland Rofi Style 9 */
+/* Modified version of Rofi Config which was submitted by https://github.com/lonerOrz via Discord */
+
+/* Integrating Wallust and More tweaks */
+
+
+configuration {
+ show-icons: true;
+ display-drun: "ï‘„";
+ drun-display-format: "{icon} {name}";
+ disable-history: false;
+ click-to-exit: true;
+ location: 0;
+ dpi: 1;
+ hover-select: true;
+ me-select-entry: "MouseSecondary";
+ me-accept-entry: "MousePrimary";
+}
+
+/* ---- Load wallust colors ---- */
+@theme "~/.config/rofi/wallust/colors-rofi.rasi"
+
+/*****----- Global Properties -----*****/
+* {
+ BG: @background;
+ BGA: @color11;
+ FG: @foreground;
+ FGA: #F28FADff;
+ BDR: @color12;
+ SEL: #1E1E2Eff;
+ UGT: #F28FADff;
+ IMG: #FAE3B0ff;
+ OFF: #575268ff;
+ ON: #ABE9B3ff;
+}
+
+/*****-- Elements Font Size -----*****/
+element-text {
+ font: "JetBrainsMono Nerd Font SemiBold 12";
+}
+
+/* ---- Window ---- */
+window {
+ transparency: "real";
+ background-color: @BG;
+ text-color: @FG;
+ border: 2px;
+ border-color: @BDR;
+ border-radius: 10px;
+ width: 30%;
+ anchor: center;
+ x-offset: 0;
+ y-offset: 0;
+}
+
+prompt {
+ enabled: true;
+ padding: 8px;
+ background-color: @BG;
+ text-color: @IMG;
+}
+
+textbox-prompt-colon {
+ expand: false;
+ str: "";
+ border-radius: 100%;
+ background-color: @SEL;
+ text-color: @FG;
+ padding: 8px 12px 8px 12px;
+}
+
+/* ---- Entry input ---- */
+entry {
+ background-color: @BG;
+ text-color: @FG;
+ placeholder-color: @FG;
+ expand: true;
+ horizontal-align: 0;
+ placeholder: " Search...";
+ blink: true;
+ border: 0px 0px 2px 0px;
+ border-color: @BDR;
+ border-radius: 10px;
+ padding: 8px;
+}
+
+inputbar {
+ children: [ textbox-prompt-colon, entry ];
+ background-color: @BG;
+ text-color: @FG;
+ expand: false;
+ border: 0px 0px 0px 0px;
+ border-radius: 0px;
+ border-color: @BDR;
+ margin: 0px 0px 0px 0px;
+ padding: 0px;
+ position: center;
+}
+
+case-indicator {
+ background-color: @BG;
+ text-color: @FG;
+ spacing: 0;
+}
+
+/* ---- Listview ---- */
+listview {
+ background-color: @BG;
+ columns: 1;
+ lines: 7;
+ spacing: 4px;
+ cycle: true;
+ dynamic: true;
+ layout: vertical;
+ scrollbar: true;
+}
+
+mainbox {
+ background-color: @BG;
+ children: [ inputbar, listview ];
+ spacing: 15px;
+ padding: 15px;
+}
+
+/* ---- Scrollbar ---- */
+scrollbar {
+ border: 1px;
+ border-radius: 10px;
+ border-color: @color12;
+ handle-color: @color11;
+ handle-width: 10px ;
+ padding: 0;
+}
+
+/* ---- Elements ---- */
+element {
+ background-color: @BG;
+ text-color: @FG;
+ orientation: horizontal;
+ border-radius: 4px;
+ padding: 6px 6px 6px 6px;
+}
+
+element-icon {
+ background-color: inherit;
+ text-color: inherit;
+ horizontal-align: 0.5;
+ vertical-align: 0.5;
+ size: 24px;
+ border: 0px;
+}
+
+element-text {
+ background-color: inherit;
+ text-color: inherit;
+ expand: true;
+ horizontal-align: 0;
+ vertical-align: 0.5;
+ margin: 2px 0px 2px 2px;
+}
+
+element normal.urgent,
+element alternate.urgent {
+ background-color: @UGT;
+ text-color: @FG;
+ border-radius: 9px;
+}
+
+element normal.active,
+element alternate.active {
+ background-color: @BGA;
+ text-color: @FG;
+}
+
+element selected {
+ background-color: @BGA;
+ text-color: @SEL;
+ border: 0px 0px 0px 0px;
+ border-radius: 10px;
+ border-color: @BDR;
+}
+
+element selected.urgent {
+ background-color: @UGT;
+ text-color: @FG;
+}
+
+element selected.active {
+ background-color: @BGA;
+ color: @FG;
+}
+
+/* ---- Message ---- */
+message {
+ background-color: transparent;
+ border: 0px;
+}
+textbox {
+ padding: 12px;
+ border-radius: 10px;
+ background-color: @BDR;
+ text-color: @foreground;
+ vertical-align: 0.5;
+ horizontal-align: 0.5;
+}
+error-message {
+ padding: 12px;
+ border-radius: 20px;
+ background-color: @background;
+ text-color: @foreground;
+} \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage