This commit is contained in:
Stephan Raabe 2023-09-28 21:53:30 +02:00
parent 09a58f5ff3
commit 09c873fb13
2 changed files with 15 additions and 18 deletions

View File

@ -13,7 +13,7 @@ configuration {
display-drun: "Applications"; display-drun: "Applications";
display-window: "Windows"; display-window: "Windows";
drun-display-format: "{name}"; drun-display-format: "{name}";
font: "Fira Sans SemiBold 11"; font: "Fira Sans Bold 12";
modi: "window,run,drun"; modi: "window,run,drun";
show-icons: true; show-icons: true;
} }
@ -23,7 +23,7 @@ configuration {
window { window {
width:900px; width:900px;
height:600px; height:590px;
spacing:0px; spacing:0px;
padding:0px; padding:0px;
@ -40,32 +40,29 @@ window {
mainbox { mainbox {
spacing:0px; spacing:0px;
padding: 0px 0px 0px 500px; padding: 0px 0px 0px 500px;
background-color:#000000;
background-image: url("~/.cache/current_wallpaper.jpg", height); background-image: url("~/.cache/current_wallpaper.jpg", height);
} }
inputbar { inputbar {
padding: 10px; enabled:false;
hidden:true;
backgound-color: transparent;
} }
listview { listview {
padding: 10px; padding: 10px;
background-color:#000000; background-color:transparent;
scrollbar: false;
dynamic: true;
} }
// Elements //
element { element {
font-color:#FFFFFF; enabled: true;
padding:6; padding: 10px;
border-radius:4px; cursor: pointer;
border:2px; background-color: transparent;
border-color:#000000; border-radius:10px;
background-color:#000000;
}
element selected {
text-color:@background;
border-color: #FFFFFF;
} }
prompt { prompt {

View File

@ -18,7 +18,7 @@
} }
{ {
"label" : "shutdown", "label" : "shutdown",
"action" : "systemctl poweroff", "action" : "sleep 1; systemctl poweroff",
"text" : "Shutdown", "text" : "Shutdown",
"keybind" : "s" "keybind" : "s"
} }