summaryrefslogtreecommitdiff
path: root/waybar/config.jsonc.desktop
blob: e8b16431719e146c11b389dc8b8cf78938d06769 (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
{
  "layer": "top",
  "position": "bottom",
  "spacing": 0,
  "margin-bottom": 0,
  "modules-left": [
      "custom/machi"
  ],
  "modules-center": [
  ],
  "modules-right": [
    "mpd",
    "pulseaudio",
    "network#vpn",
    "network#eth",
    "custom/gpu",
    "temperature",
    "clock",
    "tray",
  ],
  "custom/machi": {
    "exec": "machi_status"
  },
  "mpd": {
    "format": "| {stateIcon} {title}",
    "tooltip-format": "{title} - {album} - {artist}",
    "state-icons": {
      "playing": "▶️",
      "paused": "⏸️",
      "stopped": "⯀",
    },
  },
  "tray": {
    "icon-size": 32,
    "spacing": 10
  },
  "clock": {
    "format": "| {:%a %H:%M:%S %d/%m/%Y}",
    "tooltip-format": "<tt><big>{calendar}</big></tt>",
    "interval": 1,
  },
  "temperature": {
    "interval": 3,
    "hwmon-path": "/sys/class/hwmon/hwmon3/temp1_input",
    "format": "| CPU {temperatureC}°C",
  },
  "custom/gpu": {
    "exec": "nvidia-smi --query-gpu temperature.gpu --format=csv,noheader",
    "format": "| GPU {text}°C",
    "interval": 3,
  },
  "network#vpn": {
    "interface": "wg0-mullvad",
    "format-disconnected": "VPN ⚠",
    "format": "",
  },
  "network#eth": {
    "interface": "eno1",
    "format-disconnected": "ETH ⚠",
    "format": "",
  },
  "pulseaudio": {
    "scroll-step": 1,
    "format": "| {volume}% {icon} {format_source}",
    "format-bluetooth": "{volume}% {icon} {format_source}",
    "format-bluetooth-muted": " {icon} {format_source}",
    "format-muted": " {format_source}",
    "format-source": "",
    "format-source-muted": "",
    "format-icons": {
      "headphone": "",
      "hands-free": "",
      "headset": "",
      "phone": "",
      "portable": "",
      "car": "",
      "default": ["", "", ""]
    },
    "on-click": "pavucontrol"
  }
}