fixing the broken update

This commit is contained in:
Chris Cochrun 2024-07-10 16:31:22 -05:00
parent d016fabf0b
commit 797d90f040
4 changed files with 129 additions and 65 deletions

View file

@ -177,7 +177,7 @@ function Bar(monitor = 0) {
App.config({
style: css,
windows: [
Bar(laptop ? 0 : 2), // can be instantiated for each monitor
Bar(laptop ? 0 : 0), // can be instantiated for each monitor
NotificationPopups(),
(laptop ? BatteryPopup() : null)
],

View file

@ -3,18 +3,32 @@
configuration {
show-icons: true;
icon-theme: "Papirus";
terminal: "konsole";
sidebar-mode: true;
run-command: "bash -c {cmd}";
run-list-command: "fish -c functions";
display-drun: " ";
drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>] - {exec}";
display-drun: " ";
display-run: " ";
display-window: " ";
display-combi: " ";
drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";/* - {exec}*/
threads: 0;
scroll-method: 0;
disable-history: false;
font: "VictorMono Nerd Font 14.0";
kb-accept-entry: "Return";
kb-remove-to-eol: "Control-D";
kb-remove-char-back: "BackSpace";
kb-mode-complete: "Control-M";
kb-row-down: "Control-j";
kb-row-up: "Control-k";
kb-row-left: "Control-h";
kb-row-right: "Control-l";
font: "VictorMono Nerd Font 12.0";
timeout {
delay: 15;
action: "kb-cancel";
}
}
* {
@ -22,8 +36,8 @@ configuration {
background-color: #00222b33;
background-entry: #000000;
foreground-selected: #ffffff;
urgent: @base08;
urgent-selected: @base08;
urgent: #E91E63;
urgent-selected: #E91E63;
transparent: #00000000;
base00: #282a36;
base01: #34353e;
@ -46,10 +60,10 @@ configuration {
}
window {
background-color: @base00t;
background-color: @base00;
text-color: @base05;
transparency: "real";
border-radius: 16px;
/* transparency: "real"; */
border-radius: 20px;
border: 0px;
width: 60%;
location: center;
@ -62,39 +76,46 @@ window {
mainbox {
border-radius: 16;
background-color: @transparent;
/* background-color: @transparent; */
background-color: @base00;
text-color: @base05;
transparency: "real";
}
inputbar {
background-color: @transparent;
/* background-color: @transparent; */
background-color: @base00;
text-color: @base05;
expand: false;
border-radius: 36px;
margin: 0px 0px 0px 0px;
padding: 6px 6px 6px 6px;
padding: 20px 6px 20px 6px;
position: north;
}
prompt {
enabled: true;
padding: 0px 6px 0px 5px;
background-color: @transparent;
/* background-color: @transparent; */
background-color: @base00;
text-color: @base05;
border: 0px;
font: "VictorMono Nerd Font 22.0";
}
entry {
background-color: @transparent;
/* background-color: @transparent; */
background-color: @base00;
color: @base00;
placeholder-color: @base05;
text-color: @base05;
expand: true;
horizontal-align: 0;
placeholder: "Search";
placeholder: "";
blink: true;
border: 0px;
padding: 0px 0px 0px 6px;
font: "VictorMono Nerd Font 22.0";
}
case-indicator {
@ -109,7 +130,8 @@ sidebar {
}
mainbox {
background-color: @base00t;
/* background-color: @base00t; */
background-color: @base00;
text-color: @transparent;
children: [ inputbar, listview, message ];
spacing: 5px;
@ -130,8 +152,9 @@ textbox {
}
listview {
background-color: @transparent;
columns: 2;
/* background-color: @transparent; */
background-color: @base00;
columns: 1;
spacing: 4px;
cycle: false;
dynamic: true;
@ -151,6 +174,7 @@ element {
}
element-icon {
background-color: @transparent;
size: 30px;
border: 0px;
padding: 0px 0px 0px;
@ -190,3 +214,7 @@ element selected.active {
background-color: @background-alt;
color: @base0A;
}
window {
background-color: @base00;
}