Browse Source

tweaked rofi

pull/27/head
JaKooLit 2 years ago
parent
commit
57b2088bbb
  1. 8
      config/hypr/configs/Keybinds.conf
  2. 23
      config/rofi/config-compact.rasi
  3. 6
      config/rofi/config-long.rasi
  4. 2
      config/rofi/config-rofi-Beats.rasi
  5. 103
      config/rofi/config-wallpaper.rasi
  6. 2
      config/rofi/config-waybar-layout.rasi
  7. 2
      config/rofi/config-waybar-style.rasi
  8. 2
      config/rofi/config.rasi
  9. 21
      config/rofi/resolution/1080p/config-compact.rasi
  10. 4
      config/rofi/resolution/1080p/config-long.rasi
  11. 101
      config/rofi/resolution/1080p/config-wallpaper.rasi
  12. 21
      config/rofi/resolution/1440p/config-compact.rasi
  13. 4
      config/rofi/resolution/1440p/config-long.rasi
  14. 101
      config/rofi/resolution/1440p/config-wallpaper.rasi

8
config/hypr/configs/Keybinds.conf

@ -15,11 +15,13 @@ $screenshot = $scriptsDir/ScreenShot.sh
$volume = $scriptsDir/Volume.sh $volume = $scriptsDir/Volume.sh
# see https://wiki.hyprland.org/Configuring/Binds/ for more # see https://wiki.hyprland.org/Configuring/Binds/ for more
# rofi launcher
bindr = $mainMod, $mainMod_L, exec, pkill rofi || rofi -show drun -modi drun,filebrowser
bind = $mainMod, D, exec, pkill rofi || rofi -show drun -modi drun,filebrowser
#bind = CTRL, D, exec, pkill rofi || rofi -dmenu
bind = CTRL ALT, Delete, exec, hyprctl dispatch exit 0 bind = CTRL ALT, Delete, exec, hyprctl dispatch exit 0
bind = $mainMod SHIFT, C, exec, hyprctl reload bind = $mainMod SHIFT, C, exec, hyprctl reload
bindr = $mainMod, $mainMod_L, exec, pkill rofi || rofi -show drun -modi run,drun,filebrowser
bind = $mainMod, D, exec, pkill rofi || rofi -show drun -modi run,drun,filebrowser
#bind = CTRL, D, exec, pkill rofi || rofi -dmenu
bind = $mainMod SHIFT, Q, killactive, bind = $mainMod SHIFT, Q, killactive,
bind = $mainMod SHIFT, F, togglefloating, bind = $mainMod SHIFT, F, togglefloating,
bind = $mainMod ALT, F, exec, hyprctl dispatch workspaceopt allfloat bind = $mainMod ALT, F, exec, hyprctl dispatch workspaceopt allfloat

23
config/rofi/config-compact.rasi

@ -3,7 +3,7 @@
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
modi: "drun,run"; modi: "drun,run";
font: "Fira Code SemiBold 14"; font: "Fira Code SemiBold 12";
show-icons: true; show-icons: true;
display-drun: ""; display-drun: "";
display-run: ""; display-run: "";
@ -23,14 +23,15 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 40%; width: 40%;
/*height: 45%;*/
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
color: transparent; color: transparent;
border: 2px; border: 1px;
border-color: @background; border-color: @active-background;
cursor: "default"; cursor: "default";
transparency: "real"; transparency: "real";
location: center; location: center;
@ -46,8 +47,8 @@ mainbox {
orientation: horizontal; orientation: horizontal;
spacing: 0px; spacing: 0px;
margin: 0px; margin: 0px;
background-color: transparent; background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper", width); background-image: url("~/.config/rofi/.current_wallpaper",width);
children: [ "imagebox", "listbox" ]; children: [ "imagebox", "listbox" ];
} }
@ -79,6 +80,7 @@ inputbar {
padding: 15px; padding: 15px;
border-radius: 10px; border-radius: 10px;
border-color: @foreground; border-color: @foreground;
background-color: transparent;
children: [ "textbox-prompt-colon", "entry" ]; children: [ "textbox-prompt-colon", "entry" ];
} }
@ -87,6 +89,7 @@ textbox-prompt-colon {
expand: false; expand: false;
str: "🔎 "; str: "🔎 ";
text-color: inherit; text-color: inherit;
background-color: transparent;
} }
entry { entry {
@ -94,7 +97,7 @@ entry {
background-color: transparent; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: text; cursor: text;
placeholder: "Choose"; placeholder: "View / Edit Hyprland Settings";
placeholder-color: inherit; placeholder-color: inherit;
} }
@ -109,7 +112,7 @@ mode-switcher{
button { button {
padding: 10px; padding: 10px;
border-radius: 10px; border-radius: 10px;
background-color: @background; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: pointer; cursor: pointer;
border: 0px; border: 0px;
@ -137,7 +140,7 @@ listview {
margin: 0px; margin: 0px;
border-radius: 10px; border-radius: 10px;
border: 0px; border: 0px;
background-image: url("~/.config/rofi/.current_wallpaper", height); background-color: transparent;
} }
/* ---- Element ---- */ /* ---- Element ---- */
@ -146,7 +149,7 @@ element {
padding: 5px; padding: 5px;
margin: 2px; margin: 2px;
cursor: pointer; cursor: pointer;
background-color: @background; background-color: transparent;
border-radius: 10px; border-radius: 10px;
border: 0px; border: 0px;
} }
@ -225,7 +228,7 @@ textbox {
padding: 15px; padding: 15px;
margin: 0px; margin: 0px;
border-radius: 0px; border-radius: 0px;
background-color: @background; background-color: transparent;
text-color: @foreground; text-color: @foreground;
vertical-align: 0.5; vertical-align: 0.5;
horizontal-align: 0.0; horizontal-align: 0.0;

6
config/rofi/config-long.rasi

@ -3,7 +3,7 @@
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
modi: "drun,run"; modi: "drun,run";
font: "Fira Code SemiBold 14"; font: "Fira Code SemiBold 12";
show-icons: true; show-icons: true;
display-drun: ""; display-drun: "";
display-run: ""; display-run: "";
@ -22,7 +22,7 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 30%; width: 45%;
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
@ -126,7 +126,7 @@ button selected {
listview { listview {
enabled: true; enabled: true;
columns: 1; columns: 1;
lines: 20; lines: 15;
cycle: true; cycle: true;
dynamic: true; dynamic: true;
scrollbar: true; scrollbar: true;

2
config/rofi/config-rofi-Beats.rasi

@ -3,7 +3,7 @@
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
modi: "drun,run"; modi: "drun,run";
font: "Fira Code SemiBold 14"; font: "Fira Code SemiBold 12";
show-icons: true; show-icons: true;
display-drun: ""; display-drun: "";
display-run: ""; display-run: "";

103
config/rofi/config-wallpaper.rasi

@ -1,9 +1,10 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ /* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
modi: "drun,run"; modi: "drun,run";
font: "Fira Code SemiBold 14"; font: "Fira Code SemiBold 12";
show-icons: true; show-icons: true;
display-drun: ""; display-drun: "";
display-run: ""; display-run: "";
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary"; me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}"; window-format: "{w} · {c} · {t}";
dpi: 1; dpi: 1;
} }
/* ---- Load pywal colors (custom wal template) ---- */ /* ---- Load pywal colors (custom wal template) ---- */
@ -22,15 +24,15 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 20%; width: 40%;
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
padding: 0px; padding: 2px;
margin: 0px; margin: 0px;
color: transparent; color: transparent;
border: 2px; border: 1px;
border-color: @background; border-color: @active-background;
cursor: "default"; cursor: "default";
transparency: "real"; transparency: "real";
location: center; location: center;
@ -43,28 +45,25 @@ window {
/* ---- Mainbox ---- */ /* ---- Mainbox ---- */
mainbox { mainbox {
enabled: true; enabled: true;
orientation: vertical; orientation: horizontal;
spacing: 0px; padding: 20px;
margin: 0px; background-image: url("~/.config/rofi/.current_wallpaper", width);
background-color: transparent; children: [ "imagebox", "listbox" ];
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "listbox" ];
} }
/* ---- Imagebox ---- */ /* ---- Imagebox ---- */
imagebox { imagebox {
padding: 6px; background-color: transparent;
background-color: transparent;
orientation: vertical; orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ]; children: [ "inputbar", "dummy", "mode-switcher" ];
} }
/* ---- Listbox ---- */ /* ---- Listbox ---- */
listbox { listbox {
spacing: 20px; spacing: 4px;
background-color: transparent; background-color: transparent;
orientation: vertical; orientation: vertical;
children: [ "inputbar", "message", "listview" ]; children: [ "listview" ];
} }
/* ---- Dummy ---- */ /* ---- Dummy ---- */
dummy { dummy {
@ -76,19 +75,19 @@ inputbar {
enabled: true; enabled: true;
text-color: @foreground; text-color: @foreground;
spacing: 10px; spacing: 10px;
padding: 20px; padding: 15px;
border-radius: 10px; border-radius: 10px;
border-color: @foreground; border-color: @foreground;
background-color: transparent; background-color: transparent;
children: [ "textbox-prompt-colon", "entry" ]; children: [ "textbox-prompt-colon", "entry" ];
} }
textbox-prompt-colon { textbox-prompt-colon {
enabled: true; enabled: true;
expand: false; expand: false;
str: "🔎 "; str: "󰸉 ";
text-color: inherit; text-color: inherit;
background-color: transparent; background-color: transparent;
} }
entry { entry {
@ -96,7 +95,7 @@ entry {
background-color: transparent; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: text; cursor: text;
placeholder: "Choose Wallpaper"; placeholder: "Choose Desired wallpaper";
placeholder-color: inherit; placeholder-color: inherit;
} }
@ -109,47 +108,44 @@ mode-switcher{
} }
button { button {
padding: 10px; padding: 10px;
border-radius: 10px; border-radius: 10px;
background-color: @background; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: pointer; cursor: pointer;
border: 0px;
} }
button selected { button selected {
background-color: @selected-normal-background; background-color: @selected-normal-background;
text-color: @foreground; text-color: @foreground;
} }
/* ---- Listview ---- */ /* ---- Listview ---- */
listview { listview {
enabled: true; enabled: true;
columns: 1; columns: 1;
lines: 10; lines: 10;
cycle: true; spacing: 4px;
dynamic: true; dynamic: true;
scrollbar: true; enabled: true;
layout: vertical; cycle: true;
reverse: false; scrollbar: false;
fixed-height: true; layout: vertical;
fixed-columns: true; reverse: true;
spacing: 0px; fixed-height: false;
padding: 2px; fixed-columns: false;
margin: 0px; background-color: transparent;
border-radius: 10px;
border: 0px;
background-color: transparent;
} }
/* ---- Element ---- */ /* ---- Element ---- */
element { element {
enabled: true; enabled: true;
padding: 2px; padding: 5px;
margin: 2px; margin: 2px;
cursor: pointer; cursor: pointer;
background-color: transparent; background-color: transparent;
border-radius: 10px; border-radius: 10px;
border: 0px;
} }
element normal.normal { element normal.normal {
@ -215,26 +211,19 @@ element-text {
/*****----- Message -----*****/ /*****----- Message -----*****/
message { message {
background-color: transparent; background-color: transparent;
border: 0px;
margin: 20px 0px 0px 0px; margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px; border-radius: 10px;
} }
textbox { textbox {
padding: 6px; padding: 15px;
margin: 0px; background-color: transparent;
border-radius: 0px;
background-color: transparent;
text-color: @foreground; text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
} }
error-message { error-message {
padding: 6px; padding: 15px;
border-radius: 20px; border-radius: 20px;
background-color: @background; background-color: @background;
text-color: @foreground; text-color: @foreground;
} }

2
config/rofi/config-waybar-layout.rasi

@ -3,7 +3,7 @@
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
modi: "drun,run"; modi: "drun,run";
font: "Fira Code SemiBold 14"; font: "Fira Code SemiBold 12";
show-icons: true; show-icons: true;
display-drun: ""; display-drun: "";
display-run: ""; display-run: "";

2
config/rofi/config-waybar-style.rasi

@ -3,7 +3,7 @@
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
modi: "drun,run"; modi: "drun,run";
font: "Fira Code SemiBold 14"; font: "Fira Code SemiBold 12";
show-icons: true; show-icons: true;
display-drun: ""; display-drun: "";
display-run: ""; display-run: "";

2
config/rofi/config.rasi

@ -4,7 +4,7 @@
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
modi: "drun,run"; modi: "drun,run";
font: "Fira Code SemiBold 14"; font: "Fira Code SemiBold 12";
show-icons: true; show-icons: true;
display-drun: ""; display-drun: "";
display-run: ""; display-run: "";

21
config/rofi/resolution/1080p/config-compact.rasi

@ -23,14 +23,15 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 40%; width: 40%;
/*height: 45%;*/
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
color: transparent; color: transparent;
border: 2px; border: 1px;
border-color: @background; border-color: @active-background;
cursor: "default"; cursor: "default";
transparency: "real"; transparency: "real";
location: center; location: center;
@ -46,8 +47,8 @@ mainbox {
orientation: horizontal; orientation: horizontal;
spacing: 0px; spacing: 0px;
margin: 0px; margin: 0px;
background-color: transparent; background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper", width); background-image: url("~/.config/rofi/.current_wallpaper",width);
children: [ "imagebox", "listbox" ]; children: [ "imagebox", "listbox" ];
} }
@ -79,6 +80,7 @@ inputbar {
padding: 15px; padding: 15px;
border-radius: 10px; border-radius: 10px;
border-color: @foreground; border-color: @foreground;
background-color: transparent;
children: [ "textbox-prompt-colon", "entry" ]; children: [ "textbox-prompt-colon", "entry" ];
} }
@ -87,6 +89,7 @@ textbox-prompt-colon {
expand: false; expand: false;
str: "🔎 "; str: "🔎 ";
text-color: inherit; text-color: inherit;
background-color: transparent;
} }
entry { entry {
@ -94,7 +97,7 @@ entry {
background-color: transparent; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: text; cursor: text;
placeholder: "Choose"; placeholder: "View / Edit Hyprland Settings";
placeholder-color: inherit; placeholder-color: inherit;
} }
@ -109,7 +112,7 @@ mode-switcher{
button { button {
padding: 10px; padding: 10px;
border-radius: 10px; border-radius: 10px;
background-color: @background; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: pointer; cursor: pointer;
border: 0px; border: 0px;
@ -137,7 +140,7 @@ listview {
margin: 0px; margin: 0px;
border-radius: 10px; border-radius: 10px;
border: 0px; border: 0px;
background-image: url("~/.config/rofi/.current_wallpaper", height); background-color: transparent;
} }
/* ---- Element ---- */ /* ---- Element ---- */
@ -146,7 +149,7 @@ element {
padding: 5px; padding: 5px;
margin: 2px; margin: 2px;
cursor: pointer; cursor: pointer;
background-color: @background; background-color: transparent;
border-radius: 10px; border-radius: 10px;
border: 0px; border: 0px;
} }
@ -225,7 +228,7 @@ textbox {
padding: 15px; padding: 15px;
margin: 0px; margin: 0px;
border-radius: 0px; border-radius: 0px;
background-color: @background; background-color: transparent;
text-color: @foreground; text-color: @foreground;
vertical-align: 0.5; vertical-align: 0.5;
horizontal-align: 0.0; horizontal-align: 0.0;

4
config/rofi/resolution/1080p/config-long.rasi

@ -22,7 +22,7 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 30%; width: 45%;
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
@ -126,7 +126,7 @@ button selected {
listview { listview {
enabled: true; enabled: true;
columns: 1; columns: 1;
lines: 20; lines: 15;
cycle: true; cycle: true;
dynamic: true; dynamic: true;
scrollbar: true; scrollbar: true;

101
config/rofi/resolution/1080p/config-wallpaper.rasi

@ -1,4 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ /* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary"; me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}"; window-format: "{w} · {c} · {t}";
dpi: 1; dpi: 1;
} }
/* ---- Load pywal colors (custom wal template) ---- */ /* ---- Load pywal colors (custom wal template) ---- */
@ -22,15 +24,15 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 20%; width: 40%;
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
padding: 0px; padding: 2px;
margin: 0px; margin: 0px;
color: transparent; color: transparent;
border: 2px; border: 1px;
border-color: @background; border-color: @active-background;
cursor: "default"; cursor: "default";
transparency: "real"; transparency: "real";
location: center; location: center;
@ -43,28 +45,25 @@ window {
/* ---- Mainbox ---- */ /* ---- Mainbox ---- */
mainbox { mainbox {
enabled: true; enabled: true;
orientation: vertical; orientation: horizontal;
spacing: 0px; padding: 20px;
margin: 0px; background-image: url("~/.config/rofi/.current_wallpaper", width);
background-color: transparent; children: [ "imagebox", "listbox" ];
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "listbox" ];
} }
/* ---- Imagebox ---- */ /* ---- Imagebox ---- */
imagebox { imagebox {
padding: 6px; background-color: transparent;
background-color: transparent;
orientation: vertical; orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ]; children: [ "inputbar", "dummy", "mode-switcher" ];
} }
/* ---- Listbox ---- */ /* ---- Listbox ---- */
listbox { listbox {
spacing: 20px; spacing: 4px;
background-color: transparent; background-color: transparent;
orientation: vertical; orientation: vertical;
children: [ "inputbar", "message", "listview" ]; children: [ "listview" ];
} }
/* ---- Dummy ---- */ /* ---- Dummy ---- */
dummy { dummy {
@ -76,19 +75,19 @@ inputbar {
enabled: true; enabled: true;
text-color: @foreground; text-color: @foreground;
spacing: 10px; spacing: 10px;
padding: 20px; padding: 15px;
border-radius: 10px; border-radius: 10px;
border-color: @foreground; border-color: @foreground;
background-color: transparent; background-color: transparent;
children: [ "textbox-prompt-colon", "entry" ]; children: [ "textbox-prompt-colon", "entry" ];
} }
textbox-prompt-colon { textbox-prompt-colon {
enabled: true; enabled: true;
expand: false; expand: false;
str: "🔎 "; str: "󰸉 ";
text-color: inherit; text-color: inherit;
background-color: transparent; background-color: transparent;
} }
entry { entry {
@ -96,7 +95,7 @@ entry {
background-color: transparent; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: text; cursor: text;
placeholder: "Choose Wallpaper"; placeholder: "Choose Desired wallpaper";
placeholder-color: inherit; placeholder-color: inherit;
} }
@ -109,47 +108,44 @@ mode-switcher{
} }
button { button {
padding: 10px; padding: 10px;
border-radius: 10px; border-radius: 10px;
background-color: @background; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: pointer; cursor: pointer;
border: 0px;
} }
button selected { button selected {
background-color: @selected-normal-background; background-color: @selected-normal-background;
text-color: @foreground; text-color: @foreground;
} }
/* ---- Listview ---- */ /* ---- Listview ---- */
listview { listview {
enabled: true; enabled: true;
columns: 1; columns: 1;
lines: 10; lines: 10;
cycle: true; spacing: 4px;
dynamic: true; dynamic: true;
scrollbar: true; enabled: true;
layout: vertical; cycle: true;
reverse: false; scrollbar: false;
fixed-height: true; layout: vertical;
fixed-columns: true; reverse: true;
spacing: 0px; fixed-height: false;
padding: 2px; fixed-columns: false;
margin: 0px; background-color: transparent;
border-radius: 10px;
border: 0px;
background-color: transparent;
} }
/* ---- Element ---- */ /* ---- Element ---- */
element { element {
enabled: true; enabled: true;
padding: 2px; padding: 5px;
margin: 2px; margin: 2px;
cursor: pointer; cursor: pointer;
background-color: transparent; background-color: transparent;
border-radius: 10px; border-radius: 10px;
border: 0px;
} }
element normal.normal { element normal.normal {
@ -215,26 +211,19 @@ element-text {
/*****----- Message -----*****/ /*****----- Message -----*****/
message { message {
background-color: transparent; background-color: transparent;
border: 0px;
margin: 20px 0px 0px 0px; margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px; border-radius: 10px;
} }
textbox { textbox {
padding: 6px; padding: 15px;
margin: 0px; background-color: transparent;
border-radius: 0px;
background-color: transparent;
text-color: @foreground; text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
} }
error-message { error-message {
padding: 6px; padding: 15px;
border-radius: 20px; border-radius: 20px;
background-color: @background; background-color: @background;
text-color: @foreground; text-color: @foreground;
} }

21
config/rofi/resolution/1440p/config-compact.rasi

@ -23,14 +23,15 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 40%; width: 40%;
/*height: 45%;*/
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
color: transparent; color: transparent;
border: 2px; border: 1px;
border-color: @background; border-color: @active-background;
cursor: "default"; cursor: "default";
transparency: "real"; transparency: "real";
location: center; location: center;
@ -46,8 +47,8 @@ mainbox {
orientation: horizontal; orientation: horizontal;
spacing: 0px; spacing: 0px;
margin: 0px; margin: 0px;
background-color: transparent; background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper", width); background-image: url("~/.config/rofi/.current_wallpaper",width);
children: [ "imagebox", "listbox" ]; children: [ "imagebox", "listbox" ];
} }
@ -79,6 +80,7 @@ inputbar {
padding: 15px; padding: 15px;
border-radius: 10px; border-radius: 10px;
border-color: @foreground; border-color: @foreground;
background-color: transparent;
children: [ "textbox-prompt-colon", "entry" ]; children: [ "textbox-prompt-colon", "entry" ];
} }
@ -87,6 +89,7 @@ textbox-prompt-colon {
expand: false; expand: false;
str: "🔎 "; str: "🔎 ";
text-color: inherit; text-color: inherit;
background-color: transparent;
} }
entry { entry {
@ -94,7 +97,7 @@ entry {
background-color: transparent; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: text; cursor: text;
placeholder: "Choose"; placeholder: "View / Edit Hyprland Settings";
placeholder-color: inherit; placeholder-color: inherit;
} }
@ -109,7 +112,7 @@ mode-switcher{
button { button {
padding: 10px; padding: 10px;
border-radius: 10px; border-radius: 10px;
background-color: @background; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: pointer; cursor: pointer;
border: 0px; border: 0px;
@ -137,7 +140,7 @@ listview {
margin: 0px; margin: 0px;
border-radius: 10px; border-radius: 10px;
border: 0px; border: 0px;
background-image: url("~/.config/rofi/.current_wallpaper", height); background-color: transparent;
} }
/* ---- Element ---- */ /* ---- Element ---- */
@ -146,7 +149,7 @@ element {
padding: 5px; padding: 5px;
margin: 2px; margin: 2px;
cursor: pointer; cursor: pointer;
background-color: @background; background-color: transparent;
border-radius: 10px; border-radius: 10px;
border: 0px; border: 0px;
} }
@ -225,7 +228,7 @@ textbox {
padding: 15px; padding: 15px;
margin: 0px; margin: 0px;
border-radius: 0px; border-radius: 0px;
background-color: @background; background-color: transparent;
text-color: @foreground; text-color: @foreground;
vertical-align: 0.5; vertical-align: 0.5;
horizontal-align: 0.0; horizontal-align: 0.0;

4
config/rofi/resolution/1440p/config-long.rasi

@ -22,7 +22,7 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 30%; width: 45%;
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
@ -126,7 +126,7 @@ button selected {
listview { listview {
enabled: true; enabled: true;
columns: 1; columns: 1;
lines: 20; lines: 15;
cycle: true; cycle: true;
dynamic: true; dynamic: true;
scrollbar: true; scrollbar: true;

101
config/rofi/resolution/1440p/config-wallpaper.rasi

@ -1,4 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ /* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* ---- Configuration ---- */ /* ---- Configuration ---- */
configuration { configuration {
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary"; me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}"; window-format: "{w} · {c} · {t}";
dpi: 1; dpi: 1;
} }
/* ---- Load pywal colors (custom wal template) ---- */ /* ---- Load pywal colors (custom wal template) ---- */
@ -22,15 +24,15 @@ configuration {
/* ---- Window ---- */ /* ---- Window ---- */
window { window {
width: 20%; width: 40%;
x-offset: 0px; x-offset: 0px;
y-offset: 0px; y-offset: 0px;
spacing: 0px; spacing: 0px;
padding: 0px; padding: 2px;
margin: 0px; margin: 0px;
color: transparent; color: transparent;
border: 2px; border: 1px;
border-color: @background; border-color: @active-background;
cursor: "default"; cursor: "default";
transparency: "real"; transparency: "real";
location: center; location: center;
@ -43,28 +45,25 @@ window {
/* ---- Mainbox ---- */ /* ---- Mainbox ---- */
mainbox { mainbox {
enabled: true; enabled: true;
orientation: vertical; orientation: horizontal;
spacing: 0px; padding: 20px;
margin: 0px; background-image: url("~/.config/rofi/.current_wallpaper", width);
background-color: transparent; children: [ "imagebox", "listbox" ];
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "listbox" ];
} }
/* ---- Imagebox ---- */ /* ---- Imagebox ---- */
imagebox { imagebox {
padding: 6px; background-color: transparent;
background-color: transparent;
orientation: vertical; orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ]; children: [ "inputbar", "dummy", "mode-switcher" ];
} }
/* ---- Listbox ---- */ /* ---- Listbox ---- */
listbox { listbox {
spacing: 20px; spacing: 4px;
background-color: transparent; background-color: transparent;
orientation: vertical; orientation: vertical;
children: [ "inputbar", "message", "listview" ]; children: [ "listview" ];
} }
/* ---- Dummy ---- */ /* ---- Dummy ---- */
dummy { dummy {
@ -76,19 +75,19 @@ inputbar {
enabled: true; enabled: true;
text-color: @foreground; text-color: @foreground;
spacing: 10px; spacing: 10px;
padding: 20px; padding: 15px;
border-radius: 10px; border-radius: 10px;
border-color: @foreground; border-color: @foreground;
background-color: transparent; background-color: transparent;
children: [ "textbox-prompt-colon", "entry" ]; children: [ "textbox-prompt-colon", "entry" ];
} }
textbox-prompt-colon { textbox-prompt-colon {
enabled: true; enabled: true;
expand: false; expand: false;
str: "🔎 "; str: "󰸉 ";
text-color: inherit; text-color: inherit;
background-color: transparent; background-color: transparent;
} }
entry { entry {
@ -96,7 +95,7 @@ entry {
background-color: transparent; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: text; cursor: text;
placeholder: "Choose Wallpaper"; placeholder: "Choose Desired wallpaper";
placeholder-color: inherit; placeholder-color: inherit;
} }
@ -109,47 +108,44 @@ mode-switcher{
} }
button { button {
padding: 10px; padding: 10px;
border-radius: 10px; border-radius: 10px;
background-color: @background; background-color: transparent;
text-color: inherit; text-color: inherit;
cursor: pointer; cursor: pointer;
border: 0px;
} }
button selected { button selected {
background-color: @selected-normal-background; background-color: @selected-normal-background;
text-color: @foreground; text-color: @foreground;
} }
/* ---- Listview ---- */ /* ---- Listview ---- */
listview { listview {
enabled: true; enabled: true;
columns: 1; columns: 1;
lines: 10; lines: 10;
cycle: true; spacing: 4px;
dynamic: true; dynamic: true;
scrollbar: true; enabled: true;
layout: vertical; cycle: true;
reverse: false; scrollbar: false;
fixed-height: true; layout: vertical;
fixed-columns: true; reverse: true;
spacing: 0px; fixed-height: false;
padding: 2px; fixed-columns: false;
margin: 0px; background-color: transparent;
border-radius: 10px;
border: 0px;
background-color: transparent;
} }
/* ---- Element ---- */ /* ---- Element ---- */
element { element {
enabled: true; enabled: true;
padding: 2px; padding: 5px;
margin: 2px; margin: 2px;
cursor: pointer; cursor: pointer;
background-color: transparent; background-color: transparent;
border-radius: 10px; border-radius: 10px;
border: 0px;
} }
element normal.normal { element normal.normal {
@ -215,26 +211,19 @@ element-text {
/*****----- Message -----*****/ /*****----- Message -----*****/
message { message {
background-color: transparent; background-color: transparent;
border: 0px;
margin: 20px 0px 0px 0px; margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px; border-radius: 10px;
} }
textbox { textbox {
padding: 6px; padding: 15px;
margin: 0px; background-color: transparent;
border-radius: 0px;
background-color: transparent;
text-color: @foreground; text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
} }
error-message { error-message {
padding: 6px; padding: 15px;
border-radius: 20px; border-radius: 20px;
background-color: @background; background-color: @background;
text-color: @foreground; text-color: @foreground;
} }

Loading…
Cancel
Save