mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 09:52:50 +00:00
~
This commit is contained in:
parent
837ffab89b
commit
925d3ba493
2 changed files with 39 additions and 8 deletions
|
@ -1,3 +1,3 @@
|
||||||
hsetroot -cover ~/.dotfiles/assets/wallpapers/current
|
hsetroot -cover ~/.dotfiles/assets/wallpapers/current
|
||||||
xcompmgr &
|
xcompmgr &
|
||||||
polybar top 2>/tmp/polybar-log.txt &
|
yambar &
|
||||||
|
|
|
@ -4,19 +4,50 @@
|
||||||
settings = {
|
settings = {
|
||||||
bar = {
|
bar = {
|
||||||
location = "top";
|
location = "top";
|
||||||
height = 26;
|
height = 18;
|
||||||
background = "00000066";
|
background = "00000088";
|
||||||
|
font = "GohuFont:style=Regular:pixelsize=11";
|
||||||
|
margin = 16;
|
||||||
|
spacing = 3;
|
||||||
|
|
||||||
|
left = [
|
||||||
|
{
|
||||||
|
label = {
|
||||||
|
content.string.text = "god's in his heaven | all's right with the world";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
right = [
|
right = [
|
||||||
|
{
|
||||||
|
pipewire = {
|
||||||
|
content.map.conditions."type == sink".string = {
|
||||||
|
text = "vol {cubic_volume}% |";
|
||||||
|
on-click = {
|
||||||
|
left = "pavucontrol";
|
||||||
|
wheel-up = "amixer sset Master 1%+";
|
||||||
|
wheel-down = "amixer sset Master 1%-";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
cpu = {
|
||||||
|
poll-interval = 2000;
|
||||||
|
content.map.conditions."id < 0".string.text = "cpu {cpu}%";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mem = {
|
||||||
|
poll-interval = 2000;
|
||||||
|
content.string.text = "ram {percent_used}% |";
|
||||||
|
};
|
||||||
|
}
|
||||||
{
|
{
|
||||||
clock = {
|
clock = {
|
||||||
date-format = "%b %d %y";
|
date-format = "%b %d %y";
|
||||||
time-format = "%I:%M %p";
|
time-format = "%I:%M %p";
|
||||||
content = [
|
content.string.text = "{date} {time}";
|
||||||
{
|
|
||||||
string.text = "{date} {time}";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue