summaryrefslogtreecommitdiff
path: root/waybar/.config/waybar/config
blob: 60dd58d0a07c869c8d4d2106080ab59b47ec4f4f (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
{
    "height": 20, // Waybar height (to be removed for auto height)
    "modules-left": ["river/tags"],
    "modules-right": ["pulseaudio", "network", "clock"],

    "river/tags": {
               "num-tags": 9
           },

    "clock": {
        "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
        "format-alt": "{:%Y-%m-%d}",
        //"format": "{:%I:%M %P}"
        "format": "{:%I:%M %p}"
    },

    "backlight": {
        // "device": "acpi_video1",
        "format": "{percent}% {icon}",
        "format-icons": ["", ""]
    },

    "battery": {
        "states": {
            // "good": 95,
            "warning": 10,
            "critical": 5
        },
        "format": "{capacity}% {icon}",
        "format-charging": "{capacity}% 🔋",
        "format-plugged": "{capacity}% 🔌",
        "format-alt": "{time} {icon}",
        // "format-good": "", // An empty format will hide the module
        // "format-full": "",
        "format-icons": ["", "", "", "", ""]
    },

    "network": {
        // "interface": "wlp2*", // (Optional) To force the use of this interface
        "format-wifi": "{essid} ({signalStrength}%) 🌍",
        "format-ethernet": "{ifname}: {ipaddr}/{cidr} 🛰️",
        "format-linked": "{ifname} (No IP) ❗",
        "format-disconnected": "Disconnected 🛑",
        "format-alt": "{ifname}: {ipaddr}/{cidr}"
    },

    "pulseaudio": {
        // "scroll-step": 1, // %, can be a float
        "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": "alacritty -e pulsemixer"
    },
}