Updated config
This commit is contained in:
parent
e411d35dd3
commit
549b443893
@ -9,8 +9,8 @@ general {
|
|||||||
|
|
||||||
decoration {
|
decoration {
|
||||||
rounding = 5
|
rounding = 5
|
||||||
active_opacity = 0.9
|
active_opacity = 0.8
|
||||||
inactive_opacity = 0.9
|
inactive_opacity = 0.8
|
||||||
|
|
||||||
blur {
|
blur {
|
||||||
enabled = true
|
enabled = true
|
||||||
@ -45,6 +45,11 @@ misc {
|
|||||||
render_ahead_of_time = false
|
render_ahead_of_time = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cursor {
|
||||||
|
use_cpu_buffer = true
|
||||||
|
no_hardware_cursors = true
|
||||||
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
accel_profile = flat
|
accel_profile = flat
|
||||||
sensitivity = 0
|
sensitivity = 0
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"layer": "top",
|
"layer": "top",
|
||||||
"position": "bottom",
|
"position": "top",
|
||||||
"modules-right": ["cpu", "custom/gpu", "memory", "disk", "custom/processes", "wireplumber", "clock"],
|
"modules-left": ["cpu", "custom/gpu", "memory", "disk", "custom/processes", "custom/tcp", "custom/udp"],
|
||||||
|
"modules-right": ["wireplumber", "clock"],
|
||||||
"include": "~/.config/waybar/modules.jsonc",
|
"include": "~/.config/waybar/modules.jsonc",
|
||||||
}
|
}
|
@ -31,6 +31,22 @@
|
|||||||
"tooltip-format": "Number of running processes",
|
"tooltip-format": "Number of running processes",
|
||||||
"on-click": "$TERMINAL -e btop",
|
"on-click": "$TERMINAL -e btop",
|
||||||
},
|
},
|
||||||
|
"custom/tcp": {
|
||||||
|
"interval": 2,
|
||||||
|
"format": "[TCP] {}",
|
||||||
|
"exec": "lsof -tPniTCP | wc -l",
|
||||||
|
"return-type": "",
|
||||||
|
"tooltip-format": "Number of processes with TCP connections",
|
||||||
|
"on-click": "$TERMINAL -e bandwhich",
|
||||||
|
},
|
||||||
|
"custom/udp": {
|
||||||
|
"interval": 2,
|
||||||
|
"format": "[UDP] {}",
|
||||||
|
"exec": "lsof -tPniUDP | wc -l",
|
||||||
|
"return-type": "",
|
||||||
|
"tooltip-format": "Number of processes with UDP connections",
|
||||||
|
"on-click": "$TERMINAL -e bandwhich",
|
||||||
|
},
|
||||||
"wireplumber": {
|
"wireplumber": {
|
||||||
"format": "[VOL] {volume}%",
|
"format": "[VOL] {volume}%",
|
||||||
"format-muted": "",
|
"format-muted": "",
|
||||||
|
@ -6,11 +6,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#waybar {
|
#waybar {
|
||||||
background: rgba(38, 41, 44, 0.5);
|
background: transparent;
|
||||||
|
/* background: rgba(38, 41, 44, 0.5); */
|
||||||
}
|
}
|
||||||
|
|
||||||
#cpu, #custom-gpu, #memory, #disk, #custom-processes, #wireplumber, #clock {
|
#cpu, #custom-gpu, #memory, #disk, #custom-processes, #custom-tcp, #custom-udp, #wireplumber, #clock {
|
||||||
color: rgba(255, 255, 255, 0.8);
|
color: rgba(255, 255, 255, 0.6);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
padding: 4px 8px;
|
padding: 4px 8px;
|
||||||
margin-left: 4px;
|
margin-left: 4px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user