Fix rofi rice and gitignore generated files
This commit is contained in:
@@ -1,28 +1,28 @@
|
||||
* {
|
||||
primary: #838dc8;
|
||||
primary-fixed: #434d84;
|
||||
primary-fixed-dim: #2c366b;
|
||||
on-primary: #374176;
|
||||
on-primary-fixed: #b7c0ff;
|
||||
on-primary-fixed-variant: #939dd9;
|
||||
primary-container: #2c366b;
|
||||
on-primary-container: #97a0dd;
|
||||
secondary: #8d8fa6;
|
||||
secondary-fixed: #4d5064;
|
||||
secondary-fixed-dim: #36394c;
|
||||
on-secondary: #26293b;
|
||||
on-secondary-fixed: #c1c2da;
|
||||
on-secondary-fixed-variant: #9d9fb5;
|
||||
secondary-container: #36394c;
|
||||
on-secondary-container: #a0a2b9;
|
||||
tertiary: #ac85a1;
|
||||
tertiary-fixed: #684660;
|
||||
tertiary-fixed-dim: #4f3048;
|
||||
on-tertiary: #3d2037;
|
||||
on-tertiary-fixed: #e3b7d5;
|
||||
on-tertiary-fixed-variant: #bd94b1;
|
||||
tertiary-container: #4f3048;
|
||||
on-tertiary-container: #c198b5;
|
||||
primary: #818ec8;
|
||||
primary-fixed: #414e84;
|
||||
primary-fixed-dim: #2a366b;
|
||||
on-primary: #354176;
|
||||
on-primary-fixed: #b4c1ff;
|
||||
on-primary-fixed-variant: #919dd9;
|
||||
primary-container: #2a366b;
|
||||
on-primary-container: #94a1dd;
|
||||
secondary: #8c8fa6;
|
||||
secondary-fixed: #4c5064;
|
||||
secondary-fixed-dim: #35394c;
|
||||
on-secondary: #25293b;
|
||||
on-secondary-fixed: #c0c3da;
|
||||
on-secondary-fixed-variant: #9c9fb5;
|
||||
secondary-container: #35394c;
|
||||
on-secondary-container: #a0a3b9;
|
||||
tertiary: #ab85a2;
|
||||
tertiary-fixed: #674761;
|
||||
tertiary-fixed-dim: #4e3049;
|
||||
on-tertiary: #3c2038;
|
||||
on-tertiary-fixed: #e1b8d7;
|
||||
on-tertiary-fixed-variant: #bb94b2;
|
||||
tertiary-container: #4e3049;
|
||||
on-tertiary-container: #c098b6;
|
||||
error: #ff5449;
|
||||
on-error: #5c0003;
|
||||
error-container: #7b0007;
|
||||
@@ -31,17 +31,17 @@
|
||||
on-surface: #a3a2a9;
|
||||
on-surface-variant: #82828c;
|
||||
outline: #53535c;
|
||||
outline-variant: #393942;
|
||||
outline-variant: #393a42;
|
||||
shadow: #000000;
|
||||
scrim: #000000;
|
||||
inverse-surface: #e3e1e9;
|
||||
inverse-on-surface: #64646a;
|
||||
inverse-primary: #737db7;
|
||||
inverse-primary: #717eb7;
|
||||
surface-dim: #121318;
|
||||
surface-bright: #39393f;
|
||||
surface-bright: #38393f;
|
||||
surface-container-lowest: #0d0e13;
|
||||
surface-container-low: #1b1b21;
|
||||
surface-container: #1f1f25;
|
||||
surface-container-high: #29292f;
|
||||
surface-container-high: #292a2f;
|
||||
surface-container-highest: #34343a;
|
||||
}
|
||||
@@ -2,13 +2,14 @@
|
||||
@import "colors.rasi"
|
||||
|
||||
configuration {
|
||||
modi: "window,run,drun";
|
||||
display-drun: "Applications";
|
||||
display-window: "Windows";
|
||||
display-run: "Run";
|
||||
drun-display-format: "{icon} {name}";
|
||||
modi: "drun,filebrowser,window,emoji";
|
||||
display-drun: "apps";
|
||||
display-window: "windows";
|
||||
display-filebrowser: "files";
|
||||
display-emoji: "emoji";
|
||||
drun-display-format: "{name}";
|
||||
font: "JetBrainsMono Nerd Font 10";
|
||||
show-icons: true;
|
||||
// show-icons: true;
|
||||
icon-theme: "Colloid";
|
||||
}
|
||||
|
||||
@@ -18,7 +19,7 @@ window {
|
||||
location: center;
|
||||
anchor: center;
|
||||
fullscreen: false;
|
||||
width: 1000px;
|
||||
width: 800px;
|
||||
x-offset: 0px;
|
||||
y-offset: 0px;
|
||||
|
||||
@@ -41,16 +42,18 @@ mainbox {
|
||||
}
|
||||
|
||||
imagebox {
|
||||
padding: 20px;
|
||||
padding: 5px;
|
||||
background-color: transparent;
|
||||
/*background-image: url("~/.config/hypr/current_wallpaper", height);*/
|
||||
|
||||
// Current wallpaper should be set by the process that changes the wallpaper (like mutagen or quickshell)
|
||||
background-image: url("~/.config/hypr/current_wallpaper", height);
|
||||
orientation: vertical;
|
||||
children: [ "inputbar", "dummy", "mode-switcher" ];
|
||||
}
|
||||
|
||||
listbox {
|
||||
spacing: 20px;
|
||||
padding: 20px;
|
||||
padding: 5px;
|
||||
background-color: transparent;
|
||||
orientation: vertical;
|
||||
children: [ "message", "listview" ];
|
||||
@@ -63,11 +66,11 @@ dummy {
|
||||
|
||||
inputbar {
|
||||
enabled: true;
|
||||
spacing: 10px;
|
||||
padding: 15px;
|
||||
border-radius: 10px;
|
||||
background-color: @on-primary;
|
||||
text-color: @on-surface;
|
||||
spacing: 2px;
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
background-color: @on-primary;
|
||||
text-color: @on-surface;
|
||||
children: [ "textbox-prompt-colon", "entry" ];
|
||||
}
|
||||
textbox-prompt-colon {
|
||||
@@ -82,19 +85,19 @@ entry {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
cursor: text;
|
||||
placeholder: "Search";
|
||||
placeholder: "Whaddup?";
|
||||
placeholder-color: inherit;
|
||||
}
|
||||
|
||||
mode-switcher{
|
||||
enabled: true;
|
||||
spacing: 20px;
|
||||
spacing: 5px;
|
||||
background-color: transparent;
|
||||
text-color: @primary-fixed;
|
||||
}
|
||||
button {
|
||||
padding: 15px;
|
||||
border-radius: 10px;
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
background-color: @on-primary;
|
||||
text-color: inherit;
|
||||
cursor: pointer;
|
||||
@@ -106,8 +109,8 @@ button selected {
|
||||
|
||||
listview {
|
||||
enabled: true;
|
||||
columns: 1;
|
||||
lines: 8;
|
||||
columns: 2;
|
||||
lines: 12;
|
||||
cycle: true;
|
||||
dynamic: true;
|
||||
scrollbar: false;
|
||||
@@ -116,7 +119,7 @@ listview {
|
||||
fixed-height: true;
|
||||
fixed-columns: true;
|
||||
|
||||
spacing: 10px;
|
||||
spacing: 2px;
|
||||
background-color: transparent;
|
||||
text-color: @on-surface;
|
||||
cursor: "default";
|
||||
@@ -124,9 +127,9 @@ listview {
|
||||
|
||||
element {
|
||||
enabled: true;
|
||||
spacing: 15px;
|
||||
padding: 8px;
|
||||
border-radius: 10px;
|
||||
spacing: 5px;
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
background-color: transparent;
|
||||
text-color: @on-surface;
|
||||
cursor: pointer;
|
||||
@@ -158,7 +161,7 @@ element selected.active {
|
||||
element-icon {
|
||||
background-color: transparent;
|
||||
text-color: inherit;
|
||||
size: 32px;
|
||||
// size: 20px;
|
||||
cursor: inherit;
|
||||
}
|
||||
element-text {
|
||||
@@ -174,7 +177,7 @@ message {
|
||||
}
|
||||
textbox {
|
||||
padding: 15px;
|
||||
border-radius: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: @on-primary;
|
||||
text-color: @on-surface;
|
||||
vertical-align: 0.5;
|
||||
|
||||
Reference in New Issue
Block a user