add basic playlist functionality for 'queuing'

This commit is contained in:
ksyasuda
2021-11-04 18:37:16 -07:00
parent 40202b7c65
commit a5033db481
3 changed files with 166 additions and 51 deletions

View File

@@ -1,5 +1,5 @@
configuration {
font: "Open Sans 15";
font: "Open Sans 35";
display-drun: "Dmenu";
scroll-method: 0;
disable-history: false;
@@ -8,17 +8,18 @@ configuration {
* {
selected-normal-foreground: rgba ( 255, 147, 5, 100 % );
foreground: rgba ( 196, 203, 212, 100 % );
/* foreground: rgba ( 196, 203, 212, 100 % ); */
foreground: #ecbe7b;
normal-foreground: @foreground;
alternate-normal-background: rgba ( 45, 48, 59, 1 % );
red: rgba ( 220, 50, 47, 100 % );
red: #ff6c6b;
selected-urgent-foreground: rgba ( 249, 249, 249, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
blue: #51afef;
urgent-foreground: rgba ( 204, 102, 102, 100 % );
alternate-urgent-background: rgba ( 75, 81, 96, 90 % );
active-foreground: rgba ( 101, 172, 255, 100 % );
active-foreground: #51afef;
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 249, 249, 249, 100 % );
selected-active-foreground: #1E90FF;
alternate-active-background: rgba ( 45, 48, 59, 88 % );
background: rgba ( 45, 48, 59, 88 % );
alternate-normal-foreground: @foreground;
@@ -35,9 +36,8 @@ configuration {
alternate-active-foreground: @active-foreground;
active-background: rgba ( 29, 31, 33, 17 % );
selected-active-background: rgba ( 26, 28, 35, 100 % );
black: #1d1d1d;
blackwidget: #262626;
black: #464b55;
blackwidget: #262626;
}
@@ -131,6 +131,7 @@ element.alternate.active {
text-color: #51afef;
border-color: #51afef;
}
scrollbar {
width: 4px ;
border: 0;
@@ -138,37 +139,45 @@ scrollbar {
handle-width: 8px ;
padding: 0;
}
mode-switcher {
border: 2px 0px 0px ;
border-color: @separatorcolor;
}
button {
spacing: 0;
text-color: @normal-foreground;
}
button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 5px ;
padding: 6px;
}
case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
entry {
padding: 6px 10px;
spacing: 0;
text-color: @normal-foreground;
}
prompt {
spacing: 0;
spacing: 0;
text-color: #51afef;
padding: 5px 0px;
padding: 4px 0px;
}
inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
padding: 15px 0px;
@@ -179,5 +188,5 @@ textbox-prompt-colon {
str: ":";
margin: 0px 0.3em 0em 0em ;
text-color: #51afef;
padding: 5px 0px;
padding: 4px 0px;
}