Added rofi
BIN
rofi/assets/steamdeck_holographic.png
Normal file
After Width: | Height: | Size: 66 KiB |
BIN
rofi/assets/style_1.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
rofi/assets/style_2.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
rofi/assets/style_3.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
rofi/assets/style_4.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
rofi/assets/style_5.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
rofi/assets/style_6.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
rofi/assets/style_7.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
rofi/assets/style_8.png
Normal file
After Width: | Height: | Size: 21 KiB |
101
rofi/clipboard.rasi
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: false;
|
||||||
|
font: "JetBrainsMono Nerd Font 9";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 55%;
|
||||||
|
width: 20%;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 15px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "inputbar" , "listbox" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
padding: 7px;
|
||||||
|
children: [ "entry" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
enabled: true;
|
||||||
|
padding: 70px;
|
||||||
|
text-color: @main-fg;
|
||||||
|
background-color: @main-bg;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", width);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 6px;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: false;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 12px;
|
||||||
|
border-radius: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.0;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
139
rofi/config.rasi
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window,run";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 600px;
|
||||||
|
width: 900px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "inputbar" , "listbox" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 80px;
|
||||||
|
children: [ "entry" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
background-image: url("~/.config/swww/wall.rofi", width);
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
border-radius: 30px;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 20px;
|
||||||
|
text-color: @main-fg;
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
padding: 30px;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "listview" , "mode-switcher" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 10px;
|
||||||
|
spacing: 10px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 2;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
mode-switcher {
|
||||||
|
orientation: vertical;
|
||||||
|
width: 95px;
|
||||||
|
enabled: true;
|
||||||
|
padding: 15px;
|
||||||
|
spacing: 10px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 20px;
|
||||||
|
padding: 9px;
|
||||||
|
border-radius: 25px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 47px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
99
rofi/keybinds_hint.rasi
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: false;
|
||||||
|
font: "JetBrainsMono Nerd Font 2";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 80%;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 15px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "inputbar" , "listbox" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
padding: 7px;
|
||||||
|
children: [ "entry" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
enabled: true;
|
||||||
|
padding: 70px;
|
||||||
|
text-color: @main-fg;
|
||||||
|
background-color: @main-bg;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", width);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 6px;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: false;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 12px;
|
||||||
|
border-radius: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.0;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
81
rofi/quickapps.rasi
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 70px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "listbox" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
padding: 0px;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 10px;
|
||||||
|
spacing: 10px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
flow: horizontal;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: false;
|
||||||
|
fixed-columns: false;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @main-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 50px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
enabled: false;
|
||||||
|
}
|
||||||
|
|
94
rofi/steam/gamelauncher_1.rasi
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: true;
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
font: "JetBrainsMono Nerd Font 8";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
enabled: true;
|
||||||
|
fullscreen: false;
|
||||||
|
width: 20%;
|
||||||
|
height: 100%;
|
||||||
|
location: west;
|
||||||
|
x-offset: 10%;
|
||||||
|
transparency: "real";
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border-color: transparent;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
spacing: 17px;
|
||||||
|
padding: 10px 20px 10px 20px;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: false;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: true;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
orientation: horizontal;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 15%;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
cursor: inherit;
|
||||||
|
border-radius: 35px;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
enabled: true;
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
92
rofi/steam/gamelauncher_2.rasi
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: true;
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
font: "JetBrainsMono Nerd Font 8";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
enabled: true;
|
||||||
|
fullscreen: false;
|
||||||
|
width: 100%;
|
||||||
|
height: 800px;
|
||||||
|
transparency: "real";
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border-color: transparent;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 9;
|
||||||
|
lines: 1;
|
||||||
|
spacing: 30px;
|
||||||
|
padding: 30px 200px 30px 200px;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: false;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: true;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
orientation: vertical;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: horizontal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 29%;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
cursor: inherit;
|
||||||
|
border-radius: 35px;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 10px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
93
rofi/steam/gamelauncher_3.rasi
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: true;
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
font: "JetBrainsMono Nerd Font 8";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
enabled: true;
|
||||||
|
fullscreen: false;
|
||||||
|
width: 28%;
|
||||||
|
height: 100%;
|
||||||
|
location: west;
|
||||||
|
transparency: "real";
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border-color: transparent;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 4;
|
||||||
|
spacing: 20px;
|
||||||
|
padding: 10px 50px 10px 50px;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: false;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: true;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
orientation: vertical;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 3px;
|
||||||
|
border-radius: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 20%;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
cursor: inherit;
|
||||||
|
border-radius: 35px;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
enabled: true;
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 5px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
91
rofi/steam/gamelauncher_4.rasi
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: true;
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
font: "JetBrainsMono Nerd Font 8";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
enabled: true;
|
||||||
|
fullscreen: false;
|
||||||
|
width: 100%;
|
||||||
|
transparency: "real";
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border-color: transparent;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 10;
|
||||||
|
lines: 1;
|
||||||
|
spacing: 30px;
|
||||||
|
padding: 40px 100px 40px 100px;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: false;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: true;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
orientation: vertical;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: horizontal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 30%;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
cursor: inherit;
|
||||||
|
border-radius: 35px;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 10px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
97
rofi/steam/gamelauncher_5.rasi
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: true;
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
font: "JetBrainsMono Nerd Font 8";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
enabled: true;
|
||||||
|
fullscreen: false;
|
||||||
|
width: 2155px;
|
||||||
|
height: 850px;
|
||||||
|
transparency: "real";
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border-color: transparent;
|
||||||
|
background-image: url("~/.config/rofi/assets/steamdeck_holographic.png", width);
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: transparent;
|
||||||
|
orientation: horizontal;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 42px 442px 50px 450px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 5;
|
||||||
|
rows: 2;
|
||||||
|
flow: horizontal;
|
||||||
|
spacing: 25px;
|
||||||
|
padding: 20px 50px 20px 50px;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
reverse: true;
|
||||||
|
fixed-height: false;
|
||||||
|
fixed-columns: false;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
orientation: vertical;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 0px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: horizontal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 300px;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
cursor: inherit;
|
||||||
|
border-radius: 0px;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 10px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
134
rofi/styles/style_1.rasi
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window,run";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 590px;
|
||||||
|
width: 1140px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "inputbar" , "listbox" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
width: 640px;
|
||||||
|
children: [ "mode-switcher" , "entry" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.rofi", height);
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
enabled: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Modes //
|
||||||
|
mode-switcher{
|
||||||
|
orientation: vertical;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
width: 68px;
|
||||||
|
padding: 160px 10px 160px 10px;
|
||||||
|
spacing: 25px;
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
spacing: 10px;
|
||||||
|
padding: 30px;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 30px;
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 48px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
139
rofi/styles/style_2.rasi
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window,run";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 600px;
|
||||||
|
width: 900px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "inputbar" , "listbox" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 80px;
|
||||||
|
children: [ "entry" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
background-image: url("~/.config/swww/wall.rofi", width);
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
border-radius: 30px;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 20px;
|
||||||
|
text-color: @main-fg;
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
padding: 30px;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "listview" , "mode-switcher" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 10px;
|
||||||
|
spacing: 10px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 2;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
mode-switcher {
|
||||||
|
orientation: vertical;
|
||||||
|
width: 95px;
|
||||||
|
enabled: true;
|
||||||
|
padding: 15px;
|
||||||
|
spacing: 10px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 20px;
|
||||||
|
padding: 9px;
|
||||||
|
border-radius: 25px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 47px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
126
rofi/styles/style_3.rasi
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window,run";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 500px;
|
||||||
|
width: 600px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 25px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "listbox" , "inputbar"];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
padding: 5px;
|
||||||
|
spacing: 5px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "mode-switcher" , "listview" ];
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 20px;
|
||||||
|
spacing: 5px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
border-radius: 25px;
|
||||||
|
}
|
||||||
|
mode-switcher {
|
||||||
|
orientation: vertical;
|
||||||
|
width: 100px;
|
||||||
|
enabled: true;
|
||||||
|
padding: 60px 10px 60px 10px;
|
||||||
|
spacing: 15px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 30px;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 50px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
134
rofi/styles/style_4.rasi
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window,run";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 500px;
|
||||||
|
width: 750px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "inputbar" , "mode-switcher" , "listbox" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
width: 180px;
|
||||||
|
children: [ "entry" ];
|
||||||
|
background-image: url("~/.config/swww/wall.rofi", height);
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
enabled: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Modes //
|
||||||
|
mode-switcher{
|
||||||
|
orientation: vertical;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
width: 100px;
|
||||||
|
padding: 70px 10px 70px 20px;
|
||||||
|
spacing: 25px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
spacing: 5px;
|
||||||
|
padding: 10px;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 20px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
border-radius: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 30px;
|
||||||
|
padding: 6px;
|
||||||
|
border-radius: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 48px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
134
rofi/styles/style_5.rasi
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window,run";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 500px;
|
||||||
|
width: 800px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "inputbar" , "listbox" , "mode-switcher" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
children: [ "entry" ];
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
enabled: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
padding: 0px;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 30px;
|
||||||
|
spacing: 10px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 5;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Modes //
|
||||||
|
mode-switcher {
|
||||||
|
orientation: horizontal;
|
||||||
|
enabled: true;
|
||||||
|
padding: 30px 160px 30px 160px;
|
||||||
|
spacing: 50px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 30px;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 25px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 90px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
136
rofi/styles/style_6.rasi
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window,run";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 500px;
|
||||||
|
width: 600px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "inputbar" , "mode-switcher" , "listbox" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
width: 0px;
|
||||||
|
enabled: true;
|
||||||
|
children: [ "entry" ];
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
enabled: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Modes //
|
||||||
|
mode-switcher {
|
||||||
|
width: 150px;
|
||||||
|
orientation: vertical;
|
||||||
|
enabled: true;
|
||||||
|
padding: 80px 40px 80px 40px;
|
||||||
|
spacing: 20px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
padding: 0px;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 30px;
|
||||||
|
spacing: 0px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
orientation: horizontal;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 20px;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 50px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
153
rofi/styles/style_7.rasi
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 200px;
|
||||||
|
width: 600px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "listbox" , "inputmode" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", width);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listbox {
|
||||||
|
padding: 0px;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 10px;
|
||||||
|
spacing: 0px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 5;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputmode {
|
||||||
|
padding: 0px;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "inputbar" , "mode-switcher" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
width: 400px;
|
||||||
|
height: 0px;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 30px 10px 30px 65px;
|
||||||
|
children: [ "entry" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
border-radius: 50px;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 10px;
|
||||||
|
text-color: @main-fg;
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Modes //
|
||||||
|
mode-switcher {
|
||||||
|
width: 200px;
|
||||||
|
orientation: horizontal;
|
||||||
|
enabled: true;
|
||||||
|
padding: 30px 65px 30px 0px;
|
||||||
|
spacing: 10px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0px;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 25px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 38px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
139
rofi/styles/style_8.rasi
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun,filebrowser,window,run";
|
||||||
|
show-icons: true;
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "";
|
||||||
|
display-filebrowser: "";
|
||||||
|
display-window: "";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
window-format: "{w}{t}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
icon-theme: "Tela-circle-dracula";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
height: 500px;
|
||||||
|
width: 600px;
|
||||||
|
transparency: "real";
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 2px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border-color: @main-br;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 0px;
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ "listmode" , "inputbar" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.rofi", height);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listmode {
|
||||||
|
enabled: true;
|
||||||
|
children: [ "listbox" , "mode-switcher" ];
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||||||
|
}
|
||||||
|
listbox {
|
||||||
|
spacing: 5px;
|
||||||
|
padding: 10px;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
padding: 15px;
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
border-radius: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Modes //
|
||||||
|
mode-switcher{
|
||||||
|
orientation: horizontal;
|
||||||
|
enabled: true;
|
||||||
|
spacing: 18px;
|
||||||
|
padding: 10px 180px 20px 40px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
padding: 12px;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 50px;
|
||||||
|
background-color: @main-bg;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: @main-fg;
|
||||||
|
text-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Inputs //
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
width: 150px;
|
||||||
|
children: [ "entry" ];
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
enabled: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
spacing: 20px;
|
||||||
|
padding: 6px;
|
||||||
|
border-radius: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 48px;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
10
rofi/themes/Catppuccin-Latte.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #dce0e8e6;
|
||||||
|
main-fg: #4c4f69ff;
|
||||||
|
main-br: #9ca0b0ff;
|
||||||
|
main-ex: #8839efff;
|
||||||
|
select-bg: #dd7878ff;
|
||||||
|
select-fg: #eff1f5ff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Catppuccin-Mocha.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #11111be6;
|
||||||
|
main-fg: #cdd6f4ff;
|
||||||
|
main-br: #cba6f7ff;
|
||||||
|
main-ex: #f5e0dcff;
|
||||||
|
select-bg: #b4befeff;
|
||||||
|
select-fg: #11111bff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Cyberpunk-Edge.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #000000e6;
|
||||||
|
main-fg: #ffffffff;
|
||||||
|
main-br: #ffa6c2ff;
|
||||||
|
main-ex: #f5e0dcff;
|
||||||
|
select-bg: #fada16ff;
|
||||||
|
select-fg: #000000ff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Decay-Green.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #151720e6;
|
||||||
|
main-fg: #cbced3ff;
|
||||||
|
main-br: #98d3eecc;
|
||||||
|
main-ex: #95d3afcc;
|
||||||
|
select-bg: #90ceaaff;
|
||||||
|
select-fg: #151720ff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Frosted-Glass.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #e6f1f4d9;
|
||||||
|
main-fg: #1e4c84ff;
|
||||||
|
main-br: #a44185ff;
|
||||||
|
main-ex: #ea9d34cc;
|
||||||
|
select-bg: #7ed6ffff;
|
||||||
|
select-fg: #1e4c84ff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Graphite-Mono.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #262626e6;
|
||||||
|
main-fg: #d9d9d9ff;
|
||||||
|
main-br: #a6a6a6ff;
|
||||||
|
main-ex: #595959cc;
|
||||||
|
select-bg: #a6a6a6ff;
|
||||||
|
select-fg: #262626ff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Gruvbox-Retro.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #282828FF;
|
||||||
|
main-fg: #CBCED3FF;
|
||||||
|
main-br: #EBDBB2FF;
|
||||||
|
main-ex: #85A583FF;
|
||||||
|
select-bg: #475437FF;
|
||||||
|
select-fg: #B5CC97FF;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Material-Sakura.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #faf4ede6;
|
||||||
|
main-fg: #b4637aff;
|
||||||
|
main-br: #9893a5ff;
|
||||||
|
main-ex: #ea9d34cc;
|
||||||
|
select-bg: #d7827eff;
|
||||||
|
select-fg: #fffaf3ff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Rose-Pine.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #26233ae6;
|
||||||
|
main-fg: #e0def4ff;
|
||||||
|
main-br: #31748fff;
|
||||||
|
main-ex: #c4a7e7cc;
|
||||||
|
select-bg: #c4a7e7ff;
|
||||||
|
select-fg: #191724ff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
10
rofi/themes/Tokyo-Night.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #24283be6;
|
||||||
|
main-fg: #c0caf5ff;
|
||||||
|
main-br: #bb9af7ff;
|
||||||
|
main-ex: #7dcfffcc;
|
||||||
|
select-bg: #7aa2f7ff;
|
||||||
|
select-fg: #24283bff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
8
rofi/themes/Wall-Dcol.rasi
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #202121E6;
|
||||||
|
main-fg: #A1A6A4;
|
||||||
|
main-br: #474B4C;
|
||||||
|
main-ex: #4A4B4B;
|
||||||
|
select-bg: #697170;
|
||||||
|
select-fg: #DFDEDE;
|
||||||
|
}
|
10
rofi/themes/theme.rasi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* {
|
||||||
|
main-bg: #11111be6;
|
||||||
|
main-fg: #cdd6f4ff;
|
||||||
|
main-br: #cba6f7ff;
|
||||||
|
main-ex: #f5e0dcff;
|
||||||
|
select-bg: #b4befeff;
|
||||||
|
select-fg: #11111bff;
|
||||||
|
separatorcolor: transparent;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
87
rofi/themeselect.rasi
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
// Config //
|
||||||
|
configuration {
|
||||||
|
modi: "drun";
|
||||||
|
show-icons: true;
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
font: "JetBrainsMono Nerd Font 10";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||||||
|
|
||||||
|
|
||||||
|
// Main //
|
||||||
|
window {
|
||||||
|
enabled: true;
|
||||||
|
fullscreen: false;
|
||||||
|
width: 100%;
|
||||||
|
transparency: "real";
|
||||||
|
cursor: "default";
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border-color: transparent;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
children: [ "listview" ];
|
||||||
|
background-color: @main-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Lists //
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 3;
|
||||||
|
lines: 1;
|
||||||
|
spacing: 50px;
|
||||||
|
padding: 50px 60px 50px 60px;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: false;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: true;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
cursor: "default";
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Elements //
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
orientation: horizontal;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 40px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @main-fg;
|
||||||
|
}
|
||||||
|
@media(max-aspect-ratio: 1.8) {
|
||||||
|
element {
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @select-bg;
|
||||||
|
text-color: @select-fg;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
size: 33%;
|
||||||
|
cursor: inherit;
|
||||||
|
border-radius: 35px;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
cursor: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|