pipewire and calendar theming
This commit is contained in:
@@ -54,8 +54,8 @@ in
|
|||||||
"temperature#gpu"
|
"temperature#gpu"
|
||||||
"keyboard-state#capslock"
|
"keyboard-state#capslock"
|
||||||
"keyboard-state#numlock"
|
"keyboard-state#numlock"
|
||||||
"pulseaudio"
|
"wireplumber#sink"
|
||||||
"pulseaudio#microphone"
|
"wireplumber#source"
|
||||||
"bluetooth"
|
"bluetooth"
|
||||||
"clock"
|
"clock"
|
||||||
"custom/weather"
|
"custom/weather"
|
||||||
@@ -153,14 +153,14 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pulseaudio = {
|
"wireplumber#sink" = {
|
||||||
format = "{icon} {volume}%";
|
format = "{icon} {volume}%";
|
||||||
tooltip = false;
|
tooltip = false;
|
||||||
format-muted = "{icon} Muted";
|
format-muted = "{icon} Muted";
|
||||||
on-click = "pamixer -t";
|
on-click = "wpctl set-mute @DEFAULT_SINK@ toggle";
|
||||||
on-click-right = "pavucontrol -t 1";
|
on-click-right = "pavucontrol -t 1";
|
||||||
on-scroll-up = "pamixer -i 5";
|
on-scroll-up = "wpctl set-volume @DEFAULT_SINK@ 5%+";
|
||||||
on-scroll-down = "pamixer -d 5";
|
on-scroll-down = "wpctl set-volume @DEFAULT_SINK@ 5%-";
|
||||||
scroll-step = 5;
|
scroll-step = 5;
|
||||||
format-icons = {
|
format-icons = {
|
||||||
headphone = "";
|
headphone = "";
|
||||||
@@ -179,6 +179,19 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"wireplumber#source" = {
|
||||||
|
node-type = "Audio/Source";
|
||||||
|
format = "";
|
||||||
|
format-muted = "";
|
||||||
|
tooltip = false;
|
||||||
|
# tooltip-format = "{source_desc} | {source_volume}%";
|
||||||
|
on-click = "wpctl set-mute @DEFAULT_SOURCE@ toggle";
|
||||||
|
on-click-right = "pavucontrol -t 2";
|
||||||
|
on-scroll-up = "wpctl set-volume @DEFAULT_SOURCE@ 5%+";
|
||||||
|
on-scroll-down = "wpctl set-volume @DEFAULT_SOURCE@ 5%-";
|
||||||
|
scroll-step = 5;
|
||||||
|
};
|
||||||
|
|
||||||
"bluetooth" = {
|
"bluetooth" = {
|
||||||
on-click = "overskride";
|
on-click = "overskride";
|
||||||
tooltip = true;
|
tooltip = true;
|
||||||
@@ -195,20 +208,18 @@ in
|
|||||||
tooltip-format-enumerate-connected = { };
|
tooltip-format-enumerate-connected = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
"pulseaudio#microphone" = {
|
|
||||||
format = "{format_source}";
|
|
||||||
format-source = "";
|
|
||||||
format-source-muted = "";
|
|
||||||
on-click = "pamixer --default-source -t";
|
|
||||||
on-click-right = "pavucontrol -t 2";
|
|
||||||
on-scroll-up = "pamixer --default-source -i 5";
|
|
||||||
on-scroll-down = "pamixer --default-source -d 5";
|
|
||||||
scroll-step = 5;
|
|
||||||
};
|
|
||||||
|
|
||||||
clock = {
|
clock = {
|
||||||
format = "{:%I:%M %p}";
|
format = "{:%I:%M %p}";
|
||||||
tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";
|
tooltip-format = "<tt><small>{calendar}</small></tt>";
|
||||||
|
calendar = {
|
||||||
|
mode = "month";
|
||||||
|
format = {
|
||||||
|
months = "<span color='${theme.nord.frost.nord9}'><b>{}</b></span>";
|
||||||
|
days = "<span color='${theme.nord.frost.nord10}'><b>{}</b></span>";
|
||||||
|
weekdays = "<span color='${theme.nord.frost.nord8}'><b>{}</b></span>";
|
||||||
|
today = "<span color='${theme.nord.aurora.nord14}'><b><u>{}</u></b></span>";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
"custom/weather" = {
|
"custom/weather" = {
|
||||||
@@ -313,7 +324,7 @@ in
|
|||||||
${borderRight}
|
${borderRight}
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio.microphone {
|
#wireplumber.source {
|
||||||
color: ${theme.nord.frost.nord8};
|
color: ${theme.nord.frost.nord8};
|
||||||
background-color: ${theme.nord.polarNight.nord0};
|
background-color: ${theme.nord.polarNight.nord0};
|
||||||
${defaultOpacity}
|
${defaultOpacity}
|
||||||
@@ -321,7 +332,7 @@ in
|
|||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio {
|
#wireplumber.sink {
|
||||||
color: ${theme.nord.frost.nord7};
|
color: ${theme.nord.frost.nord7};
|
||||||
background-color: ${theme.nord.polarNight.nord0};
|
background-color: ${theme.nord.polarNight.nord0};
|
||||||
${defaultOpacity}
|
${defaultOpacity}
|
||||||
|
|||||||
Reference in New Issue
Block a user