feat(dotfiles): add rofi plus niri waybar ricing
This commit is contained in:
parent
2fedcd8c8d
commit
fa24b6abfb
10 changed files with 346 additions and 22 deletions
6
dotfiles/rofi/config.rasi
Normal file
6
dotfiles/rofi/config.rasi
Normal file
|
@ -0,0 +1,6 @@
|
|||
configuration {
|
||||
font: "Inter Semibold 13px";
|
||||
icon-theme: "Papirus-Dark";
|
||||
}
|
||||
|
||||
@theme "~/.config/rofi/theme/cherry-midnight.rasi"
|
BIN
dotfiles/rofi/images/header-1.jpg
Normal file
BIN
dotfiles/rofi/images/header-1.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 264 KiB |
8
dotfiles/rofi/rofi-session.conf
Normal file
8
dotfiles/rofi/rofi-session.conf
Normal file
|
@ -0,0 +1,8 @@
|
|||
#
|
||||
# rofi-session configuration
|
||||
#
|
||||
|
||||
icon=true
|
||||
choices=lockscreen:logout:reboot:shutdown
|
||||
label=false
|
||||
theme=~/.config/rofi/theme/cherry-midnight.session.rasi
|
104
dotfiles/rofi/theme/cherry-midnight.rasi
Normal file
104
dotfiles/rofi/theme/cherry-midnight.rasi
Normal file
|
@ -0,0 +1,104 @@
|
|||
configuration {
|
||||
show-icons: true;
|
||||
display-run: ">_";
|
||||
}
|
||||
|
||||
* {
|
||||
color0: #33333f;
|
||||
color1: #ff568e;
|
||||
color2: #64de83;
|
||||
color3: #efff73;
|
||||
color4: #73a9ff;
|
||||
color5: #946ff7;
|
||||
color6: #62c6da;
|
||||
color7: #dedeef;
|
||||
|
||||
bg: #101017f0;
|
||||
bg-alt: #1f222e;
|
||||
fg: #bdc3c7;
|
||||
|
||||
color: @fg;
|
||||
background-color: transparent;
|
||||
highlight: underline bold #ff568e;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
window {
|
||||
width: 480px;
|
||||
children: [ mainbox];
|
||||
location: center;
|
||||
transparency: "real";
|
||||
background-color: @bg;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
orientation: vertical;
|
||||
children: [ inputbar, message, listview, mode-switcher];
|
||||
border: 1px;
|
||||
border-color: @color0;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
padding: 1em;
|
||||
children: [prompt,entry];
|
||||
spacing: -1px;
|
||||
}
|
||||
|
||||
prompt {
|
||||
background-color: @color1;
|
||||
padding: 15px;
|
||||
text-color: @bg;
|
||||
border-radius: 50% 0 0 50%;
|
||||
}
|
||||
|
||||
entry {
|
||||
padding: 15px 30px 15px 15px;
|
||||
border: 0px;
|
||||
border-radius: 0 100% 100% 0;
|
||||
background-color: @bg;
|
||||
text-color: @fg;
|
||||
}
|
||||
|
||||
message {
|
||||
padding: 0 0 1em 0;
|
||||
}
|
||||
|
||||
textbox {
|
||||
background-color: @color1;
|
||||
padding: 0 1.5em;
|
||||
}
|
||||
|
||||
listview {
|
||||
margin: 0.5em 0 0 0;
|
||||
lines: 6;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 0.5em;
|
||||
color: @fg;
|
||||
}
|
||||
|
||||
element selected.normal {
|
||||
background-color: @bg-alt;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
padding: 0 0.5em 0 1em;
|
||||
}
|
||||
|
||||
mode-switcher {
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 0.3em 0 0.5em;
|
||||
padding: 0.3em;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
button selected {
|
||||
background-color: @color5;
|
||||
text-color: @color0;
|
||||
}
|
93
dotfiles/rofi/theme/cherry-midnight.session.rasi
Normal file
93
dotfiles/rofi/theme/cherry-midnight.session.rasi
Normal file
|
@ -0,0 +1,93 @@
|
|||
configuration {
|
||||
show-icons: true;
|
||||
}
|
||||
|
||||
* {
|
||||
color0: #33333f;
|
||||
color1: #ff568e;
|
||||
color2: #64de83;
|
||||
color3: #efff73;
|
||||
color4: #73a9ff;
|
||||
color5: #946ff7;
|
||||
color6: #62c6da;
|
||||
color7: #dedeef;
|
||||
|
||||
bg: #101017;
|
||||
bg-alt: #1f222e;
|
||||
fg: #bdc3c7;
|
||||
|
||||
color: @fg;
|
||||
background-color: transparent;
|
||||
highlight: underline bold #ff568e;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
window {
|
||||
children: [ mainbox];
|
||||
transparency: "real";
|
||||
location: center;
|
||||
width: 480px;
|
||||
background-color: #101017f0;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
children: [ inputbar, listview, message];
|
||||
border: 1px;
|
||||
border-color: @color0;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [ textbox-prompt-colon, prompt];
|
||||
spacing: -1px;
|
||||
padding: 3em;
|
||||
background-image: url("~/.config/rofi/images/header-1.jpg", width);
|
||||
}
|
||||
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: "";
|
||||
padding: 15px;
|
||||
border-radius: 100% 0 0 100%;
|
||||
background-color: @color5;
|
||||
text-color: @bg;
|
||||
}
|
||||
|
||||
prompt {
|
||||
padding: 15px 30px 15px 15px;
|
||||
border: 0px;
|
||||
border-radius: 0 100% 100% 0;
|
||||
background-color: #101017f0;
|
||||
}
|
||||
|
||||
listview {
|
||||
columns: 6;
|
||||
lines: 1;
|
||||
spacing: -1px;
|
||||
margin: 2em;
|
||||
border-radius: 50px;
|
||||
border: 1px;
|
||||
border-color: @bg-alt;
|
||||
text-color: @fg;
|
||||
background-color: #101017f0;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 20px;
|
||||
border-radius: 50%;
|
||||
orientation: vertical;
|
||||
children: [ element-icon];
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 32px;
|
||||
}
|
||||
|
||||
element selected.normal {
|
||||
border-radius: 50%;
|
||||
background-color: #ff568e25;
|
||||
border: 1px;
|
||||
border-color: #ff568e;
|
||||
}
|
105
dotfiles/rofi/theme/cherry.rasi
Normal file
105
dotfiles/rofi/theme/cherry.rasi
Normal file
|
@ -0,0 +1,105 @@
|
|||
configuration {
|
||||
show-icons: true;
|
||||
display-run: ">_";
|
||||
}
|
||||
|
||||
* {
|
||||
color0: #43434f;
|
||||
color1: #ff568e;
|
||||
color2: #64de83;
|
||||
color3: #efff73;
|
||||
color4: #73a9ff;
|
||||
color5: #946ff7;
|
||||
color6: #62c6da;
|
||||
color7: #dedeef;
|
||||
|
||||
bg: #23232ff0;
|
||||
bg-alt: #3c3e4d;
|
||||
fg: #bdc3c7;
|
||||
|
||||
color: @fg;
|
||||
background-color: transparent;
|
||||
highlight: underline bold #ff568e;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
window {
|
||||
width: 480px;
|
||||
children: [ mainbox];
|
||||
location: center;
|
||||
transparency: "real";
|
||||
background-color: @bg;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
orientation: vertical;
|
||||
children: [ inputbar, message, listview, mode-switcher];
|
||||
border: 1px;
|
||||
border-color: @color0;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
padding: 3em;
|
||||
background-image: url("~/.config/rofi/images/header-1.jpg", width);
|
||||
children: [prompt,entry];
|
||||
spacing: -1px;
|
||||
}
|
||||
|
||||
prompt {
|
||||
background-color: @color1;
|
||||
padding: 15px;
|
||||
text-color: @bg;
|
||||
border-radius: 50% 0 0 50%;
|
||||
}
|
||||
|
||||
entry {
|
||||
padding: 15px 30px 15px 15px;
|
||||
border: 0px;
|
||||
border-radius: 0 100% 100% 0;
|
||||
background-color: @bg;
|
||||
text-color: @fg;
|
||||
}
|
||||
|
||||
message {
|
||||
padding: 0 0 1em 0;
|
||||
}
|
||||
|
||||
textbox {
|
||||
background-color: @color1;
|
||||
padding: 0 1.5em;
|
||||
}
|
||||
|
||||
listview {
|
||||
margin: 0.5em 0 0 0;
|
||||
lines: 6;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 0.5em;
|
||||
color: @fg;
|
||||
}
|
||||
|
||||
element selected.normal {
|
||||
background-color: @bg-alt;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
padding: 0 0.5em 0 1em;
|
||||
}
|
||||
|
||||
mode-switcher {
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 0.3em 0 0.5em;
|
||||
padding: 0.3em;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
button selected {
|
||||
background-color: @color5;
|
||||
text-color: @color0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue