rofi: added

This commit is contained in:
dogeystamp 2023-07-22 21:23:54 -04:00
parent 5df98b9e39
commit c0ba610559
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38
3 changed files with 83 additions and 0 deletions

View File

@ -43,6 +43,7 @@ pipewire-pulse
#
# utility
#
rofi
progress
speedtest-cli
obs-studio

View File

@ -0,0 +1 @@
@theme "transparent"

View 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;
}