aboutsummaryrefslogtreecommitdiffstats
path: root/config/rofi/resolution
diff options
context:
space:
mode:
authorJaKooLit <ejhay.games@gmail.com>2025-02-10 01:16:17 +0900
committerJaKooLit <ejhay.games@gmail.com>2025-02-10 01:16:17 +0900
commitd404c8b6b94d973334a1136223fbf5c412083bdb (patch)
treee7394ffef88af10c76c34e1a3df7481ead33cb49 /config/rofi/resolution
parent752232f326fd82d28dac4107e5bf81818a657903 (diff)
Initial upload of various rofi themes
Diffstat (limited to 'config/rofi/resolution')
-rwxr-xr-xconfig/rofi/resolution/1080p/config.rasi31
-rw-r--r--config/rofi/resolution/1080p/master-config.rasi237
-rwxr-xr-xconfig/rofi/resolution/1440p/config.rasi37
-rw-r--r--config/rofi/resolution/1440p/master-config.rasi237
4 files changed, 0 insertions, 542 deletions
diff --git a/config/rofi/resolution/1080p/config.rasi b/config/rofi/resolution/1080p/config.rasi
deleted file mode 100755
index eca05ea6..00000000
--- a/config/rofi/resolution/1080p/config.rasi
+++ /dev/null
@@ -1,31 +0,0 @@
-/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
-/* Main Config 1080p */
-
-@import "~/.config/rofi/master-config.rasi"
-
-/* ---- Window ---- */
-window {
- width: 50%;
-}
-/* ---- Listview ---- */
-listview {
- columns: 5;
- lines: 5;
- fixed-height: true;
-}
-
-/* ---- Element ---- */
-element {
- orientation: vertical;
- padding: 10px 5px 10px 5px;
- spacing: 6px;
-}
-
-element-icon {
- size: 3%;
-}
-
-element-text {
- font: "JetBrainsMono Nerd Font SemiBold 10";
- horizontal-align: 0.5;
-} \ No newline at end of file
diff --git a/config/rofi/resolution/1080p/master-config.rasi b/config/rofi/resolution/1080p/master-config.rasi
deleted file mode 100644
index 09032268..00000000
--- a/config/rofi/resolution/1080p/master-config.rasi
+++ /dev/null
@@ -1,237 +0,0 @@
-/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
-/* Master Config 1080p*/
-
-/* ---- Configuration ---- */
-
-configuration {
- font: "JetBrainsMono Nerd Font SemiBold 12";
- 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: @selected-active-background; // Buttons background
- selected: @selected-urgent-background; // Button selected
- active: @selected-normal-background; // Window activated
- urgent: @selected; // When hovering the activated window (maybe more?)
-
- text-selected: @background;
- text-color: @foreground;
- border-color: @selected;
-}
-
-/* ---- Window ---- */
-window {
- // Default
- enabled: true;
- fullscreen: false;
- transparency: "real";
- cursor: "default";
- spacing: 0px;
- border: 3px 0px 3px 0px;
- border-radius: 30px;
- location: center;
- anchor: center;
-
- // Style Values
- width: 50%;
- background-color: @background;
-}
-
-/* ----- Main Box ----- */
-mainbox {
- padding: 12px;
- enabled: true;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
- background-color: transparent;
-}
-
-
-/* ---- Inputbar ---- */
-inputbar {
- enabled: true;
- padding: 10px 10px 50px 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: 20%;
- padding: 10px;
- border-radius: 12px;
- background-color: @selected;
- text-color: @text-selected;
- 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: true;
- layout: vertical;
- reverse: false;
- fixed-height: false;
- fixed-columns: true;
- spacing: 10px;
- background-color: transparent;
-
-// Adapt rofi theme
- border: 0px;
-}
-
-/* ---- 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: @text-selected;
- text-color: @text-color;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @text-selected;
-}
-
-/* ---- Scrollbar ---- */
-scrollbar {
- border: 0;
- handle-color: @background-alt;
- handle-width: 2px ;
- padding: 0;
-}
-
-/* ---- Elements ---- */
-element {
- enabled: true;
- spacing: 10px;
- padding: 10px;
- border-radius: 12px;
- 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 {
- border: 0px 3px 0px 3px;
- border-radius: 16px;
- border-color: @selected;
- background-color: transparent;
- text-color: @background-alt;
-}
-
-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;
- cursor: inherit;
-}
-element-text {
- font: "JetBrainsMono Nerd Font SemiBold 12";
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/* ---- Message ---- */
-message {
- background-color: transparent;
- border: 0px;
-}
-textbox {
- padding: 12px;
- border-radius: 10px;
- background-color: @background-alt;
- text-color: @background;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 12px;
- border-radius: 20px;
- background-color: @background-alt;
- text-color: @background;
-}
diff --git a/config/rofi/resolution/1440p/config.rasi b/config/rofi/resolution/1440p/config.rasi
deleted file mode 100755
index 768fcec1..00000000
--- a/config/rofi/resolution/1440p/config.rasi
+++ /dev/null
@@ -1,37 +0,0 @@
-/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
-/* Main Config 1440p */
-
-@import "~/.config/rofi/master-config.rasi"
-
-/* ---- Window ---- */
-window {
- width: 50%;
-}
-
-/* ---- Mode Switcher ---- */
-button {
- width: 110px;
-}
-
-/* ---- Listview ---- */
-listview {
- columns: 5;
- lines: 5;
- fixed-height: true;
-}
-
-/* ---- Element ---- */
-element {
- orientation: vertical;
- padding: 10px 5px 10px 5px;
- spacing: 6px;
-}
-
-element-icon {
- size: 3%;
-}
-
-element-text {
- font: "JetBrainsMono Nerd Font SemiBold 12";
- horizontal-align: 0.5;
-}
diff --git a/config/rofi/resolution/1440p/master-config.rasi b/config/rofi/resolution/1440p/master-config.rasi
deleted file mode 100644
index 96cb83a1..00000000
--- a/config/rofi/resolution/1440p/master-config.rasi
+++ /dev/null
@@ -1,237 +0,0 @@
-/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
-/* Master Config 1440p*/
-
-/* ---- Configuration ---- */
-
-configuration {
- font: "JetBrainsMono Nerd Font SemiBold 12";
- 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: @selected-active-background; // Buttons background
- selected: @selected-urgent-background; // Button selected
- active: @selected-normal-background; // Window activated
- urgent: @selected; // When hovering the activated window (maybe more?)
-
- text-selected: @background;
- text-color: @foreground;
- border-color: @selected;
-}
-
-/* ---- Window ---- */
-window {
- // Default
- enabled: true;
- fullscreen: false;
- transparency: "real";
- cursor: "default";
- spacing: 0px;
- border: 3px 0px 3px 0px;
- border-radius: 30px;
- location: center;
- anchor: center;
-
- // Style Values
- width: 50%;
- background-color: @background;
-}
-
-/* ----- Main Box ----- */
-mainbox {
- padding: 12px;
- enabled: true;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
- background-color: transparent;
-}
-
-
-/* ---- Inputbar ---- */
-inputbar {
- enabled: true;
- padding: 10px 10px 50px 10px;
- margin: 10px;
- background-color: transparent;
- border-radius: 20px;
- orientation: horizontal;
- children: ["entry", "dummy", "mode-switcher" ];
- background-image: url("~/.config/rofi/.current_wallpaper", width);
-}
-
-/* ---- Entry input ---- */
-entry {
- enabled: true;
- expand: false;
- width: 20%;
- padding: 10px;
- border-radius: 12px;
- background-color: @selected;
- text-color: @text-selected;
- 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: true;
- layout: vertical;
- reverse: false;
- fixed-height: false;
- fixed-columns: true;
- spacing: 10px;
- background-color: transparent;
-
-// Adapt rofi theme
- border: 0px;
-}
-
-/* ---- 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: @text-selected;
- text-color: @text-color;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @text-selected;
-}
-
-/* ---- Scrollbar ---- */
-scrollbar {
- border: 0;
- handle-color: @background-alt;
- handle-width: 2px ;
- padding: 0;
-}
-
-/* ---- Elements ---- */
-element {
- enabled: true;
- spacing: 10px;
- padding: 10px;
- border-radius: 12px;
- 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 {
- border: 0px 3px 0px 3px;
- border-radius: 16px;
- border-color: @selected;
- background-color: transparent;
- text-color: @background-alt;
-}
-
-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;
- cursor: inherit;
-}
-element-text {
- font: "JetBrainsMono Nerd Font SemiBold 14";
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/* ---- Message ---- */
-message {
- background-color: transparent;
- border: 0px;
-}
-textbox {
- padding: 12px;
- border-radius: 10px;
- background-color: @background-alt;
- text-color: @background;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 12px;
- border-radius: 20px;
- background-color: @background-alt;
- text-color: @background;
-}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage