rofi: added
This commit is contained in:
parent
5df98b9e39
commit
c0ba610559
1
programs
1
programs
@ -43,6 +43,7 @@ pipewire-pulse
|
|||||||
#
|
#
|
||||||
# utility
|
# utility
|
||||||
#
|
#
|
||||||
|
rofi
|
||||||
progress
|
progress
|
||||||
speedtest-cli
|
speedtest-cli
|
||||||
obs-studio
|
obs-studio
|
||||||
|
1
src/.config/rofi/config.rasi
Normal file
1
src/.config/rofi/config.rasi
Normal file
@ -0,0 +1 @@
|
|||||||
|
@theme "transparent"
|
81
src/.config/rofi/transparent.rasi
Normal file
81
src/.config/rofi/transparent.rasi
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
/*
|
||||||
|
* ROFI color theme
|
||||||
|
*
|
||||||
|
* Stolen from https://github.com/Murzchnvok/rofi-collection/blob/master/minimal/minimal.rasi
|
||||||
|
*
|
||||||
|
* User: Contributors
|
||||||
|
* Copyright: *!
|
||||||
|
*/
|
||||||
|
|
||||||
|
configuration {
|
||||||
|
font: "JetBrains Mono 12";
|
||||||
|
|
||||||
|
drun {
|
||||||
|
display-name: "[^.^]";
|
||||||
|
}
|
||||||
|
|
||||||
|
run {
|
||||||
|
display-name: "[°.°]";
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
display-name: "[*.*]";
|
||||||
|
}
|
||||||
|
|
||||||
|
timeout {
|
||||||
|
delay: 10;
|
||||||
|
action: "kb-cancel";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
spacing: 0;
|
||||||
|
|
||||||
|
bg: #00000040;
|
||||||
|
bg-alt: #232323;
|
||||||
|
fg: #FFFFFF;
|
||||||
|
fg-alt: #424242;
|
||||||
|
|
||||||
|
background-color: @bg;
|
||||||
|
text-color: @fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
transparency: "real";
|
||||||
|
}
|
||||||
|
|
||||||
|
mainbox {
|
||||||
|
children: [inputbar, listview];
|
||||||
|
}
|
||||||
|
|
||||||
|
inputbar {
|
||||||
|
children: [prompt, entry];
|
||||||
|
}
|
||||||
|
|
||||||
|
entry {
|
||||||
|
padding: 12px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt {
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
lines: 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
element {
|
||||||
|
children: [element-text];
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text {
|
||||||
|
padding: 12px;
|
||||||
|
text-color: @fg-alt;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text selected {
|
||||||
|
text-color: @fg;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user