1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-18 20:10:03 +02:00

adding waybar config

This commit is contained in:
Henrik Hautakoski 2024-05-25 12:31:34 +02:00
parent d385d86af7
commit 3b4f65768f
2 changed files with 97 additions and 0 deletions

38
waybar/config Normal file
View file

@ -0,0 +1,38 @@
// -*- mode: jsonc -*-
{
"position": "bottom",
"height": 34,
"spacing": 0, // Gaps between modules (4px)
// Choose the order of the modules
"modules-left": [
"hyprland/workspaces",
],
"modules-center": [
],
"modules-right": [
"tray",
"cpu",
"memory",
"clock"
],
// Modules configuration
"hyprland/workspaces": {
"format": "{name}",
},
"tray": {
"icon-size": 24,
"spacing": 10
},
"clock": {
"interval": 1,
"format": "{:%H:%M:%S %Y-%m-%d}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
},
"cpu": {
"format": "{usage}% ",
"tooltip": false
},
"memory": {
"format": "{}% "
}
}