throw stuff at git
This commit is contained in:
commit
7272fc68c4
16 changed files with 4040 additions and 0 deletions
115
waybar/config.jsonc
Normal file
115
waybar/config.jsonc
Normal file
|
@ -0,0 +1,115 @@
|
|||
{
|
||||
"layer": "top",
|
||||
"position": "top",
|
||||
"height": 25,
|
||||
"spacing": 8,
|
||||
|
||||
"modules-left": ["niri/workspaces", "niri/window"],
|
||||
"modules-center": ["custom/gpu", "cpu", "memory", "disk", "network#down", "network#up"],
|
||||
"modules-right": ["pulseaudio", "tray", "clock", "custom/notification", "custom/lock"],
|
||||
|
||||
"niri/workspaces": {
|
||||
"format": "<span size='larger'>{icon}</span>",
|
||||
"on-click": "activate",
|
||||
"format-icons": {
|
||||
"active": "\uf444",
|
||||
"default": "\uf4c3"
|
||||
},
|
||||
"icon-size": 10
|
||||
},
|
||||
|
||||
"niri/window": {
|
||||
"max-length": 36
|
||||
},
|
||||
|
||||
"custom/gpu": {
|
||||
"exec": "cat /sys/class/hwmon/hwmon2/device/gpu_busy_percent",
|
||||
"format": " {}%",
|
||||
"return-type": "",
|
||||
"interval": 2,
|
||||
"on-click": "kitty btop",
|
||||
"align": 0
|
||||
},
|
||||
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"interval": 2,
|
||||
"on-click": "kitty btop",
|
||||
"align": 0
|
||||
},
|
||||
|
||||
"disk": {
|
||||
"format": " {percentage_used}%",
|
||||
"on-click": "kitty btop",
|
||||
"align": 0
|
||||
},
|
||||
|
||||
"memory": {
|
||||
"interval": 4,
|
||||
"format": " {percentage}%",
|
||||
"on-click": "kitty btop",
|
||||
"align": 0
|
||||
},
|
||||
|
||||
"network#down": {
|
||||
"interval": 2,
|
||||
"format": " {bandwidthDownBits}",
|
||||
"tooltip-format-wifi": "{essid} ({signalStrength}%)",
|
||||
"tooltip-format-ethernet": "{ifname}",
|
||||
"align": 0
|
||||
},
|
||||
|
||||
"network#up": {
|
||||
"interval": 2,
|
||||
"format": " {bandwidthUpBits}",
|
||||
"tooltip-format-wifi": "{essid} ({signalStrength}%)",
|
||||
"tooltip-format-ethernet": "{ifname}",
|
||||
"align": 0
|
||||
},
|
||||
|
||||
"pulseaudio": {
|
||||
"format": "\udb81\udd7e {volume}%",
|
||||
"format-source": " {volume}%",
|
||||
"format-source-muted": "",
|
||||
"on-click": "pavucontrol",
|
||||
"max-volume": 100,
|
||||
"scroll-step": 1
|
||||
},
|
||||
|
||||
"tray": {
|
||||
"icon-size": 16,
|
||||
"spacing": 8
|
||||
},
|
||||
|
||||
"clock": {
|
||||
"interval": 5,
|
||||
"format": "{:%Y-%m-%d %H:%M}"
|
||||
},
|
||||
|
||||
"custom/notification": {
|
||||
"tooltip": false,
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"notification": "<span foreground='red'><sup></sup></span>",
|
||||
"none": "",
|
||||
"dnd-notification": "<span foreground='red'><sup></sup></span>",
|
||||
"dnd-none": "",
|
||||
"inhibited-notification": "<span foreground='red'><sup></sup></span>",
|
||||
"inhibited-none": "",
|
||||
"dnd-inhibited-notification": "<span foreground='red'><sup></sup></span>",
|
||||
"dnd-inhibited-none": ""
|
||||
},
|
||||
"return-type": "json",
|
||||
"exec-if": "which swaync-client",
|
||||
"exec": "swaync-client -swb",
|
||||
"on-click": "swaync-client -t -sw",
|
||||
"on-click-right": "swaync-client -d -sw",
|
||||
"escape": true
|
||||
},
|
||||
|
||||
"custom/lock": {
|
||||
"tooltip": false,
|
||||
"on-click": "swaylock -f",
|
||||
"format": "",
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue