Browse Source

rofi more tweaked

pull/31/head
JaKooLit 2 years ago
parent
commit
dbd225f9d5
  1. 94
      config/rofi/config-compact.rasi
  2. 17
      config/rofi/config-long.rasi
  3. 92
      config/rofi/config-rofi-Beats.rasi
  4. 15
      config/rofi/config-wallpaper.rasi
  5. 14
      config/rofi/config-waybar-layout.rasi
  6. 12
      config/rofi/config-waybar-style.rasi
  7. 55
      config/rofi/config.rasi
  8. 94
      config/rofi/resolution/1080p/config-compact.rasi
  9. 17
      config/rofi/resolution/1080p/config-long.rasi
  10. 92
      config/rofi/resolution/1080p/config-rofi-Beats.rasi
  11. 15
      config/rofi/resolution/1080p/config-wallpaper.rasi
  12. 14
      config/rofi/resolution/1080p/config-waybar-layout.rasi
  13. 12
      config/rofi/resolution/1080p/config-waybar-style.rasi
  14. 55
      config/rofi/resolution/1080p/config.rasi
  15. 94
      config/rofi/resolution/1440p/config-compact.rasi
  16. 17
      config/rofi/resolution/1440p/config-long.rasi
  17. 92
      config/rofi/resolution/1440p/config-rofi-Beats.rasi
  18. 13
      config/rofi/resolution/1440p/config-wallpaper.rasi
  19. 12
      config/rofi/resolution/1440p/config-waybar-layout.rasi
  20. 10
      config/rofi/resolution/1440p/config-waybar-style.rasi
  21. 53
      config/rofi/resolution/1440p/config.rasi

94
config/rofi/config-compact.rasi

@ -1,4 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config Hyprland Settings*/
/* ---- Configuration ---- */
configuration {
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}";
dpi: 1;
}
/* ---- Load pywal colors (custom wal template) ---- */
@ -22,11 +24,11 @@ configuration {
/* ---- Window ---- */
window {
width: 42%;
width: 35%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
padding: 0px;
padding: 2px;
margin: 0px;
color: transparent;
border: 1px;
@ -37,23 +39,21 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
mainbox {
enabled: true;
orientation: horizontal;
spacing: 0px;
margin: 0px;
background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper",width);
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
imagebox {
padding: 18px;
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ];
@ -61,10 +61,11 @@ imagebox {
/* ---- Listbox ---- */
listbox {
spacing: 20px;
spacing: 4px;
background-color: transparent;
orientation: vertical;
children: [ "message", "listview" ];
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,24 +77,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "🔎 ";
str: "🔎";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "View / Edit Hyprland Settings";
@ -103,43 +102,39 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
text-color: inherit;
cursor: pointer;
border: 0px;
padding: 10px;
border-radius: 10px;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
button selected {
background-color: @selected-normal-background;
text-color: @foreground;
background-color: @selected-normal-background;
text-color: @foreground;
}
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 0px;
padding: 10px;
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
enabled: true;
columns: 1;
lines: 7;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -148,7 +143,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -215,27 +210,20 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
border: 0px;
background-color: @background;
margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
margin: 0px;
border-radius: 0px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
}
error-message {
padding: 15px;
border-radius: 20px;
background-color: @background;
border-radius: 20px;
background-color: @background;
text-color: @foreground;
}

17
config/rofi/config-long.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (long) */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -46,9 +46,10 @@ mainbox {
orientation: vertical;
spacing: 0px;
margin: 0px;
background-color: transparent;
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -65,6 +66,7 @@ listbox {
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "message", "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,10 +78,10 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 20px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @background;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -96,7 +98,7 @@ entry {
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose";
placeholder: "Search";
placeholder-color: inherit;
}
@ -139,7 +141,8 @@ listview {
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

92
config/rofi/config-rofi-Beats.rasi

@ -1,4 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (main)*/
/* ---- Configuration ---- */
configuration {
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}";
dpi: 1;
}
/* ---- Load pywal colors (custom wal template) ---- */
@ -26,7 +28,7 @@ window {
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
padding: 0px;
padding: 2px;
margin: 0px;
color: transparent;
border: 1px;
@ -37,23 +39,21 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
mainbox {
enabled: true;
orientation: horizontal;
spacing: 0px;
margin: 0px;
background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper",width);
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
imagebox {
padding: 18px;
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ];
@ -61,10 +61,11 @@ imagebox {
/* ---- Listbox ---- */
listbox {
spacing: 20px;
spacing: 4px;
background-color: transparent;
orientation: vertical;
children: [ "message", "listview" ];
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,24 +77,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "📻 ";
str: "📻";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose Online Music";
@ -103,43 +102,39 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
text-color: inherit;
cursor: pointer;
border: 0px;
padding: 10px;
border-radius: 10px;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
button selected {
background-color: @selected-normal-background;
text-color: @foreground;
background-color: @selected-normal-background;
text-color: @foreground;
}
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 0px;
padding: 10px;
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
enabled: true;
columns: 1;
lines: 9;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -148,7 +143,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -215,27 +210,20 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
border: 0px;
background-color: @background;
margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
margin: 0px;
border-radius: 0px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
}
error-message {
padding: 15px;
border-radius: 20px;
background-color: @background;
border-radius: 20px;
background-color: @background;
text-color: @foreground;
}

15
config/rofi/config-wallpaper.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* Main Config wallpaper*/
/* ---- Configuration ---- */
configuration {
@ -39,7 +39,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -47,8 +47,9 @@ mainbox {
enabled: true;
orientation: horizontal;
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -75,10 +76,10 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -127,14 +128,14 @@ listview {
lines: 10;
spacing: 4px;
dynamic: true;
enabled: true;
cycle: true;
scrollbar: true;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

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

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* config - Waybar */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -22,7 +22,7 @@ configuration {
/* ---- Window ---- */
window {
width: 40%;
width: 34%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -47,6 +47,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -76,7 +77,7 @@ inputbar {
padding: 15px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -93,7 +94,7 @@ entry {
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose Waybar Style";
placeholder: "Choose Waybar Layout";
placeholder-color: inherit;
}
@ -131,7 +132,8 @@ listview {
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

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

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* config - Waybar */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -22,7 +22,7 @@ configuration {
/* ---- Window ---- */
window {
width: 40%;
width: 34%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -47,6 +47,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -76,7 +77,7 @@ inputbar {
padding: 15px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -131,7 +132,8 @@ listview {
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

55
config/rofi/config.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* Main Config (main) */
/* ---- Configuration ---- */
configuration {
@ -24,7 +24,7 @@ configuration {
/* ---- Window ---- */
window {
width: 40%;
width: 35%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
@ -39,7 +39,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -49,6 +49,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -64,7 +65,9 @@ listbox {
background-color: transparent;
orientation: vertical;
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
background-color: transparent;
@ -75,24 +78,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @background;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "🔎 ";
str: "🔎";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Search";
@ -102,15 +103,15 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
@ -122,19 +123,19 @@ button selected {
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 8;
spacing: 4px;
dynamic: true;
enabled: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
enabled: true;
columns: 1;
lines: 9;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -143,7 +144,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -210,14 +211,14 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
background-color: @background;
margin: 20px 0px 0px 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
}

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

@ -1,4 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config Hyprland Settings*/
/* ---- Configuration ---- */
configuration {
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}";
dpi: 1;
}
/* ---- Load pywal colors (custom wal template) ---- */
@ -22,11 +24,11 @@ configuration {
/* ---- Window ---- */
window {
width: 42%;
width: 35%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
padding: 0px;
padding: 2px;
margin: 0px;
color: transparent;
border: 1px;
@ -37,23 +39,21 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
mainbox {
enabled: true;
orientation: horizontal;
spacing: 0px;
margin: 0px;
background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper",width);
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
imagebox {
padding: 18px;
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ];
@ -61,10 +61,11 @@ imagebox {
/* ---- Listbox ---- */
listbox {
spacing: 20px;
spacing: 4px;
background-color: transparent;
orientation: vertical;
children: [ "message", "listview" ];
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,24 +77,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "🔎 ";
str: "🔎";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "View / Edit Hyprland Settings";
@ -103,43 +102,39 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
text-color: inherit;
cursor: pointer;
border: 0px;
padding: 10px;
border-radius: 10px;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
button selected {
background-color: @selected-normal-background;
text-color: @foreground;
background-color: @selected-normal-background;
text-color: @foreground;
}
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 0px;
padding: 10px;
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
enabled: true;
columns: 1;
lines: 7;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -148,7 +143,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -215,27 +210,20 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
border: 0px;
background-color: @background;
margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
margin: 0px;
border-radius: 0px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
}
error-message {
padding: 15px;
border-radius: 20px;
background-color: @background;
border-radius: 20px;
background-color: @background;
text-color: @foreground;
}

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

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (long) */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -46,9 +46,10 @@ mainbox {
orientation: vertical;
spacing: 0px;
margin: 0px;
background-color: transparent;
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -65,6 +66,7 @@ listbox {
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "message", "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,10 +78,10 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 20px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @background;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -96,7 +98,7 @@ entry {
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose";
placeholder: "Search";
placeholder-color: inherit;
}
@ -139,7 +141,8 @@ listview {
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

92
config/rofi/resolution/1080p/config-rofi-Beats.rasi

@ -1,4 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (main)*/
/* ---- Configuration ---- */
configuration {
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}";
dpi: 1;
}
/* ---- Load pywal colors (custom wal template) ---- */
@ -26,7 +28,7 @@ window {
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
padding: 0px;
padding: 2px;
margin: 0px;
color: transparent;
border: 1px;
@ -37,23 +39,21 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
mainbox {
enabled: true;
orientation: horizontal;
spacing: 0px;
margin: 0px;
background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper",width);
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
imagebox {
padding: 18px;
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ];
@ -61,10 +61,11 @@ imagebox {
/* ---- Listbox ---- */
listbox {
spacing: 20px;
spacing: 4px;
background-color: transparent;
orientation: vertical;
children: [ "message", "listview" ];
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,24 +77,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "📻 ";
str: "📻";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose Online Music";
@ -103,43 +102,39 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
text-color: inherit;
cursor: pointer;
border: 0px;
padding: 10px;
border-radius: 10px;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
button selected {
background-color: @selected-normal-background;
text-color: @foreground;
background-color: @selected-normal-background;
text-color: @foreground;
}
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 0px;
padding: 10px;
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
enabled: true;
columns: 1;
lines: 9;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -148,7 +143,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -215,27 +210,20 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
border: 0px;
background-color: @background;
margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
margin: 0px;
border-radius: 0px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
}
error-message {
padding: 15px;
border-radius: 20px;
background-color: @background;
border-radius: 20px;
background-color: @background;
text-color: @foreground;
}

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

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* Main Config wallpaper*/
/* ---- Configuration ---- */
configuration {
@ -39,7 +39,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -47,8 +47,9 @@ mainbox {
enabled: true;
orientation: horizontal;
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -75,10 +76,10 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -127,14 +128,14 @@ listview {
lines: 10;
spacing: 4px;
dynamic: true;
enabled: true;
cycle: true;
scrollbar: true;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

14
config/rofi/resolution/1080p/config-waybar-layout.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* config - Waybar */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -22,7 +22,7 @@ configuration {
/* ---- Window ---- */
window {
width: 40%;
width: 34%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -47,6 +47,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -76,7 +77,7 @@ inputbar {
padding: 15px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -93,7 +94,7 @@ entry {
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose Waybar Style";
placeholder: "Choose Waybar Layout";
placeholder-color: inherit;
}
@ -131,7 +132,8 @@ listview {
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

12
config/rofi/resolution/1080p/config-waybar-style.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* config - Waybar */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -22,7 +22,7 @@ configuration {
/* ---- Window ---- */
window {
width: 40%;
width: 34%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -47,6 +47,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -76,7 +77,7 @@ inputbar {
padding: 15px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -131,7 +132,8 @@ listview {
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

55
config/rofi/resolution/1080p/config.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* Main Config (main) */
/* ---- Configuration ---- */
configuration {
@ -24,7 +24,7 @@ configuration {
/* ---- Window ---- */
window {
width: 40%;
width: 35%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
@ -39,7 +39,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -49,6 +49,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -64,7 +65,9 @@ listbox {
background-color: transparent;
orientation: vertical;
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
background-color: transparent;
@ -75,24 +78,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @background;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "🔎 ";
str: "🔎";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Search";
@ -102,15 +103,15 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
@ -122,19 +123,19 @@ button selected {
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 8;
spacing: 4px;
dynamic: true;
enabled: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
enabled: true;
columns: 1;
lines: 9;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -143,7 +144,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -210,14 +211,14 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
background-color: @background;
margin: 20px 0px 0px 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
}

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

@ -1,4 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config Hyprland Settings*/
/* ---- Configuration ---- */
configuration {
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}";
dpi: 1;
}
/* ---- Load pywal colors (custom wal template) ---- */
@ -22,11 +24,11 @@ configuration {
/* ---- Window ---- */
window {
width: 40%;
width: 35%;
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
padding: 0px;
padding: 2px;
margin: 0px;
color: transparent;
border: 1px;
@ -37,23 +39,21 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
mainbox {
enabled: true;
orientation: horizontal;
spacing: 0px;
margin: 0px;
background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper",width);
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
imagebox {
padding: 18px;
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ];
@ -61,10 +61,11 @@ imagebox {
/* ---- Listbox ---- */
listbox {
spacing: 20px;
spacing: 4px;
background-color: transparent;
orientation: vertical;
children: [ "message", "listview" ];
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,24 +77,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "🔎 ";
str: "🔎";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "View / Edit Hyprland Settings";
@ -103,43 +102,39 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
text-color: inherit;
cursor: pointer;
border: 0px;
padding: 10px;
border-radius: 10px;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
button selected {
background-color: @selected-normal-background;
text-color: @foreground;
background-color: @selected-normal-background;
text-color: @foreground;
}
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 0px;
padding: 10px;
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
enabled: true;
columns: 1;
lines: 7;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -148,7 +143,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -215,27 +210,20 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
border: 0px;
background-color: @background;
margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
margin: 0px;
border-radius: 0px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
}
error-message {
padding: 15px;
border-radius: 20px;
background-color: @background;
border-radius: 20px;
background-color: @background;
text-color: @foreground;
}

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

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (long) */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -46,9 +46,10 @@ mainbox {
orientation: vertical;
spacing: 0px;
margin: 0px;
background-color: transparent;
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -65,6 +66,7 @@ listbox {
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "message", "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,10 +78,10 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 20px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @background;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -96,7 +98,7 @@ entry {
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose";
placeholder: "Search";
placeholder-color: inherit;
}
@ -139,7 +141,8 @@ listview {
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

92
config/rofi/resolution/1440p/config-rofi-Beats.rasi

@ -1,4 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config (main)*/
/* ---- Configuration ---- */
configuration {
@ -15,6 +16,7 @@ configuration {
me-accept-entry: "MousePrimary";
window-format: "{w} · {c} · {t}";
dpi: 1;
}
/* ---- Load pywal colors (custom wal template) ---- */
@ -26,7 +28,7 @@ window {
x-offset: 0px;
y-offset: 0px;
spacing: 0px;
padding: 0px;
padding: 2px;
margin: 0px;
color: transparent;
border: 1px;
@ -37,23 +39,21 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
mainbox {
enabled: true;
orientation: horizontal;
spacing: 0px;
margin: 0px;
background-color: transparent;
background-image: url("~/.config/rofi/.current_wallpaper",width);
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
imagebox {
padding: 18px;
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "dummy", "mode-switcher" ];
@ -61,10 +61,11 @@ imagebox {
/* ---- Listbox ---- */
listbox {
spacing: 20px;
spacing: 4px;
background-color: transparent;
orientation: vertical;
children: [ "message", "listview" ];
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
@ -76,24 +77,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "📻 ";
str: "📻";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose Online Music";
@ -103,43 +102,39 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
text-color: inherit;
cursor: pointer;
border: 0px;
padding: 10px;
border-radius: 10px;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
button selected {
background-color: @selected-normal-background;
text-color: @foreground;
background-color: @selected-normal-background;
text-color: @foreground;
}
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 0px;
padding: 10px;
margin: 0px;
border-radius: 10px;
border: 0px;
background-color: transparent;
enabled: true;
columns: 1;
lines: 9;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -148,7 +143,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -215,27 +210,20 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
border: 0px;
background-color: @background;
margin: 20px 0px 0px 0px;
padding: 0px;
spacing: 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
margin: 0px;
border-radius: 0px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
}
error-message {
padding: 15px;
border-radius: 20px;
background-color: @background;
border-radius: 20px;
background-color: @background;
text-color: @foreground;
}

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

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* Main Config wallpaper*/
/* ---- Configuration ---- */
configuration {
@ -39,7 +39,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -49,6 +49,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -75,10 +76,10 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -127,14 +128,14 @@ listview {
lines: 10;
spacing: 4px;
dynamic: true;
enabled: true;
cycle: true;
scrollbar: true;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

12
config/rofi/resolution/1440p/config-waybar-layout.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* config - Waybar */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -47,6 +47,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -76,7 +77,7 @@ inputbar {
padding: 15px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -93,7 +94,7 @@ entry {
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Choose Waybar Style";
placeholder: "Choose Waybar Layout";
placeholder-color: inherit;
}
@ -131,7 +132,8 @@ listview {
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

10
config/rofi/resolution/1440p/config-waybar-style.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* config - Waybar */
/* ---- Configuration ---- */
configuration {
modi: "drun,run";
@ -37,7 +37,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -47,6 +47,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", height);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -76,7 +77,7 @@ inputbar {
padding: 15px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @backrgound;
children: [ "textbox-prompt-colon", "entry" ];
}
@ -131,7 +132,8 @@ listview {
reverse: false;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */

53
config/rofi/resolution/1440p/config.rasi

@ -1,5 +1,5 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Main Config */
/* Main Config (main) */
/* ---- Configuration ---- */
configuration {
@ -39,7 +39,7 @@ window {
anchor: center;
fullscreen: false;
enabled: true;
border-radius: 10px;
border-radius: 15px;
}
/* ---- Mainbox ---- */
@ -49,6 +49,7 @@ mainbox {
padding: 20px;
background-image: url("~/.config/rofi/.current_wallpaper", width);
children: [ "imagebox", "listbox" ];
border-radius: 10px;
}
/* ---- Imagebox ---- */
@ -64,7 +65,9 @@ listbox {
background-color: transparent;
orientation: vertical;
children: [ "listview" ];
border-radius: 10px;
}
/* ---- Dummy ---- */
dummy {
background-color: transparent;
@ -75,24 +78,22 @@ inputbar {
enabled: true;
text-color: @foreground;
spacing: 10px;
padding: 15px;
padding: 10px;
border-radius: 10px;
border-color: @foreground;
background-color: transparent;
background-color: @background;
children: [ "textbox-prompt-colon", "entry" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "🔎 ";
str: "🔎";
text-color: inherit;
background-color: transparent;
}
entry {
enabled: true;
background-color: transparent;
text-color: inherit;
cursor: text;
placeholder: "Search";
@ -102,15 +103,15 @@ entry {
/* ---- Mode Switcher ---- */
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
}
button {
padding: 10px;
border-radius: 10px;
background-color: transparent;
background-color: @background;
text-color: inherit;
cursor: pointer;
}
@ -122,19 +123,19 @@ button selected {
/* ---- Listview ---- */
listview {
enabled: true;
columns: 1;
lines: 9;
spacing: 4px;
dynamic: true;
enabled: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: false;
background-color: transparent;
enabled: true;
columns: 1;
lines: 9;
spacing: 4px;
dynamic: true;
cycle: true;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: false;
background-color: @background;
border-radius: 10px;
}
/* ---- Element ---- */
@ -143,7 +144,7 @@ element {
padding: 5px;
margin: 2px;
cursor: pointer;
background-color: transparent;
background-color: transparent;
border-radius: 10px;
border: 0px;
}
@ -210,14 +211,14 @@ element-text {
/*****----- Message -----*****/
message {
background-color: transparent;
background-color: @background;
margin: 20px 0px 0px 0px;
border-radius: 10px;
}
textbox {
padding: 15px;
background-color: transparent;
background-color: @background;
text-color: @foreground;
}

Loading…
Cancel
Save