aboutsummaryrefslogtreecommitdiff
path: root/.config/waybar/config.json
blob: 880565f030dcb166254dc865760058141e38cf07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
  "name": "waybar-top",
  "layer": "top",
  "position": "top",
  "height": 20,
  "spacing": 2,
  "modules-left": [
    "cpu",
    "memory",
    "network"
  ],
  "modules-center": [
    "clock"
  ],
  "modules-right": [
    "pulseaudio",
    "temperature",
    "backlight",
    "battery",
    "idle_inhibitor",
    "tray"
  ],
  "idle_inhibitor": {
    "format": "{icon}",
    "format-icons": {
      "activated": "",
      "deactivated": ""
    }
  },
  "tray": {
    "spacing": 4
  },
  "clock": {
    "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
    "format-alt": "{:%Y-%m-%d}"
  },
  "cpu": {
    "format": "CPU: {load}",
    "tooltip": false
  },
  "memory": {
    "format": "RAM: {used}Gi/{total}Gi"
  },
  "temperature": {
    "critical-threshold": 80,
    "format": "{temperatureC}°C 🫠"
  },
  "backlight": {
    "format": "{percent}% 💡",
    "on-scroll-up": "bl inc 1",
    "on-scroll-down": "bl dec 1"
  },
  "battery": {
    "states": {
      "warning": 30,
      "critical": 15
    },
    "format": "{capacity}% 🔋",
    "format-charging": "{capacity}% ⚡",
    "format-plugged": "{capacity}% 🔌",
    "format-alt": "{time} {icon}"
  },
  "network": {
    "interface": "wlp*",
    "interval": 1,
    "format": "RX: {bandwidthDownBits} / TX: {bandwidthUpBits}",
    "format-wifi": "RX: {bandwidthDownBits} / TX: {bandwidthUpBits}"
  },
  "pulseaudio": {
    "format": "{volume}% {icon} {format_source}",
    "format-bluetooth": "{volume}% {icon} {format_source}",
    "format-bluetooth-muted": "🔇 {icon} {format_source}",
    "format-muted": "🔇 {format_source}",
    "format-source": "{volume}% ",
    "format-source-muted": "",
    "format-icons": {
      "headphone": "",
      "hands-free": "",
      "headset": "",
      "phone": "",
      "portable": "",
      "car": "",
      "default": [
        "",
        "",
        ""
      ]
    },
    "on-click": "pavucontrol",
    "on-scroll-up": "vol inc 1",
    "on-scroll-down": "vol dec 1",
    "on-click-right": "vol toggle"
  }
}