aboutsummaryrefslogtreecommitdiffstats
path: root/config/rofi/themes
diff options
context:
space:
mode:
authorJaKooLit <ejhay.games@gmail.com>2025-02-20 00:49:59 +0900
committerJaKooLit <ejhay.games@gmail.com>2025-02-20 00:51:58 +0900
commit275f85824cf88a2db76e97c17a5159d6809a7123 (patch)
treebd1b0b37f658570b52075656056194fb2a6761a4 /config/rofi/themes
parent800a9f053ee98518d256105435f00ec08ed98b78 (diff)
rofi tweaks
Diffstat (limited to 'config/rofi/themes')
-rw-r--r--config/rofi/themes/KooL_style-10-Fancy-v2.rasi6
-rw-r--r--config/rofi/themes/KooL_style-10-Fancy.rasi7
-rw-r--r--config/rofi/themes/KooL_style-13-Vertical.rasi276
-rw-r--r--config/rofi/themes/KooL_style-7.rasi8
-rw-r--r--config/rofi/themes/KooL_style-9.rasi5
5 files changed, 284 insertions, 18 deletions
diff --git a/config/rofi/themes/KooL_style-10-Fancy-v2.rasi b/config/rofi/themes/KooL_style-10-Fancy-v2.rasi
index 0a1d1b21..0d027c0a 100644
--- a/config/rofi/themes/KooL_style-10-Fancy-v2.rasi
+++ b/config/rofi/themes/KooL_style-10-Fancy-v2.rasi
@@ -2,12 +2,6 @@
/* KooL Hyprland Rofi Style 10 - Fancy v2 */
/* Credit to DaveDavenport & Rasmus Steinke */
-/**
- * Edited by: Dave Davenport
- * User: Rasi
- * Copyright: Rasmus Steinke
- */
-
/* global settings and color variables */
* {
blue: #A7c6E2;
diff --git a/config/rofi/themes/KooL_style-10-Fancy.rasi b/config/rofi/themes/KooL_style-10-Fancy.rasi
index 612d4246..c5d1fa84 100644
--- a/config/rofi/themes/KooL_style-10-Fancy.rasi
+++ b/config/rofi/themes/KooL_style-10-Fancy.rasi
@@ -2,13 +2,6 @@
/* KooL Hyprland Rofi Style 10 - Fancy */
/* Credit to DaveDavenport. I have only some few things changed */
-/*******************************************************************************
- * ROFI Color theme
- * Theme designed to show off moving, packing of widgets, icons and more.
- * User: DaveDavenport
- * Copyright: DaveDavenport
- ********************************************************************************/
-
/* ---- Configuration ---- */
configuration {
diff --git a/config/rofi/themes/KooL_style-13-Vertical.rasi b/config/rofi/themes/KooL_style-13-Vertical.rasi
new file mode 100644
index 00000000..09dc4772
--- /dev/null
+++ b/config/rofi/themes/KooL_style-13-Vertical.rasi
@@ -0,0 +1,276 @@
+/* ---- ๐Ÿ’ซ https://github.com/JaKooLit ๐Ÿ’ซ ---- */
+/* KooL_Style 13 (thin) */
+
+/* ---- Configuration ---- */
+configuration {
+ modi: "drun,run,filebrowser";
+ font: "Fira Code SemiBold 12";
+ show-icons: true;
+ display-drun: "๏†ฒโ€‰";
+ display-run: "๏„ โ€‰";
+ display-filebrowser: "๏ผ";
+ display-window: "๏‹โ€‰";
+ 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: @color10;
+ 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 {
+ width: 15%;
+ height: 80%;
+ x-offset: 8px;
+ y-offset: 0px;
+ spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border: 2px;
+ border-color: @border-color;
+ cursor: "default";
+ location: center;
+ anchor: center;
+ fullscreen: false;
+ enabled: true;
+ border-radius: 12px;
+ background-color: rgba(0, 0, 0, 0.6);
+}
+
+/* ---- Mainbox ---- */
+mainbox {
+ enabled: true;
+ orientation: vertical;
+ padding: 0px;
+ background-color: rgba(0, 0, 0, 0.1);
+ children: [ "inputbar", "imagebox" ];
+ border-radius: 12px;
+}
+
+/* ---- Imagebox ---- */
+imagebox {
+ background-color: transparent;
+ orientation: vertical;
+ children: [ "mode-switcher", "listbox"];
+}
+
+/* ---- Listbox ---- */
+listbox {
+ spacing: 5px;
+ orientation: vertical;
+ children: [ "message", "listview" ];
+ padding: 6px;
+ border-radius: 12px;
+ border: 0px;
+ border-color: @border-color;
+ background-color: transparent;
+}
+
+/* ---- Dummy ---- */
+dummy {
+ background-color: transparent;
+}
+
+/* ---- Inputbar ---- */
+inputbar {
+ enabled: true;
+ text-color: @foreground;
+ spacing: 10px;
+ padding: 30px;
+ border-radius: 10px;
+ border-color: @border-color;
+ background-color: @background;
+ background-image: url("~/.config/rofi/.current_wallpaper", width);
+ children: [ "textbox-prompt-colon","entry" ];
+ border: 0px;
+}
+
+textbox-prompt-colon {
+ enabled: true;
+ padding: 6px 0px 6px 10px;
+ expand: false;
+ str: "โ‰๏ธ";
+ text-color: inherit;
+ background-color: transparent;
+}
+
+entry {
+ enabled: true;
+ padding: 6px 0px 0px 0px;
+ text-color: @foreground;
+ cursor: text;
+ border-radius: 12px;
+ placeholder: "Type to search";
+ placeholder-color: inherit;
+ background-color: @background;
+ horizontal-align: 0.5;
+}
+
+/* ---- Mode Switcher ---- */
+mode-switcher{
+ orientation: horizontal;
+ enabled: true;
+ padding: 8px;
+ spacing: 12px;
+ background-color: transparent;
+ text-color: @foreground;
+}
+
+button {
+ padding: 10px;
+ border-radius: 10px;
+ background-color: @background;
+ text-color: inherit;
+ cursor: pointer;
+ border: 1px;
+ border-color: @border-color;
+}
+
+button selected {
+ background-color: @active;
+ text-color: @foreground;
+ border: 1px;
+ border-color: @background;
+
+}
+
+/* ---- Listview ---- */
+listview {
+ enabled: true;
+ columns: 1;
+ lines: 10;
+ spacing: 0px;
+ dynamic: true;
+ cycle: true;
+ scrollbar: false;
+ layout: vertical;
+ reverse: false;
+ fixed-height: false;
+ fixed-columns: true;
+ background-color: transparent;
+ cursor: "default";
+}
+
+/* ---- Scrollbar ---- */
+scrollbar {
+ border: 0px;
+ border-radius: 10px;
+ background-color: transparent;
+ handle-color: @active;
+ handle-width: 2px ;
+ padding: 0;
+}
+
+/* ---- Element ---- */
+element {
+ enabled: true;
+ padding: 8px;
+ spacing: 10px;
+ cursor: pointer;
+ background-color: transparent;
+ border-radius: 10px;
+ border: 0px;
+}
+
+element normal.normal {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element normal.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element normal.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element selected.normal {
+ background-color: @active;
+ text-color: @foreground;
+}
+
+element selected.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element selected.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.normal {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.urgent {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element alternate.active {
+ background-color: inherit;
+ text-color: @foreground;
+}
+
+element-icon {
+ background-color: transparent;
+ text-color: inherit;
+ size: 30px;
+ 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-alt;
+ margin: 10px;
+ border-radius: 12px;
+}
+
+textbox {
+ padding: 10px;
+ background-color: @background-alt;
+ text-color: @foreground;
+ vertical-align: 0.5;
+ horizontal-align: 0.5;
+}
+
+error-message {
+ padding: 15px;
+ border-radius: 12px;
+ background-color: @background-alt;
+ text-color: @foreground;
+}
diff --git a/config/rofi/themes/KooL_style-7.rasi b/config/rofi/themes/KooL_style-7.rasi
index 3b444baa..c6e2d102 100644
--- a/config/rofi/themes/KooL_style-7.rasi
+++ b/config/rofi/themes/KooL_style-7.rasi
@@ -7,10 +7,10 @@
configuration {
modi: "drun,run,filebrowser,window";
show-icons: true;
- display-drun: "๏†ฒโ€‰";
- display-run: "๏„ โ€‰";
- display-filebrowser: "๏ผโ€‰";
- display-window: "๏‹โ€‰";
+ display-drun: "๏†ฒโ€‰ ";
+ display-run: "๏„ โ€‰ ";
+ display-filebrowser: "๏ผโ€‰ ";
+ display-window: "๏‹โ€‰ ";
drun-display-format: "{name}";
dpi: 1;
hover-select: true;
diff --git a/config/rofi/themes/KooL_style-9.rasi b/config/rofi/themes/KooL_style-9.rasi
index c585329d..42f4138f 100644
--- a/config/rofi/themes/KooL_style-9.rasi
+++ b/config/rofi/themes/KooL_style-9.rasi
@@ -56,7 +56,7 @@ window {
mainbox {
background-color: @BG;
- children: [ inputbar, listview ];
+ children: [ inputbar, message, listview ];
spacing: 15px;
padding: 15px;
}
@@ -122,15 +122,18 @@ listview {
layout: vertical;
scrollbar: true;
padding: 10px;
+ padding: 10px;
}
/* ---- Scrollbar ---- */
scrollbar {
border: 0px;
+ border: 0px;
border-radius: 10px;
border-color: @color12;
handle-color: @color11;
handle-width: 2px ;
+ handle-width: 2px ;
padding: 0;
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage