all repos

dotfiles @ e815923

my dotfiles

config/waybar/config (view raw)

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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// vim: ft=jsonc
{
    "position": "top",
    "layer": "top",
    "height": 14,
    "margin-top": 0,
    "margin-bottom": 0,
    "margin-left": 0,
    "margin-right": 0,
    "modules-left": [
        "hyprland/workspaces",
        "hyprland/window"
    ],
    "modules-center": [
        "clock",
        "cpu"
    ],
    "modules-right": [
        "memory",
        "tray",
        "hyprland/language",
        "backlight",
        "battery",
        "pulseaudio",
        "network"
    ],

    // modules
    "clock": {
        "format": "  {:%a, %d %b %H:%M}",
        "tooltip": "true",
        "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
        "on-click": "morgen"
    },

    "hyprland/workspaces": {
        "active-only": false,
        "all-outputs": true,
        "disable-scroll": false,
        "on-scroll-up": "hyprctl dispatch workspace -1",
        "on-scroll-down": "hyprctl dispatch workspace +1",
        "format": "{icon}",
        "on-click": "activate",
        "sort-by-number": true,
        "persistent_workspaces": { "*": 9 },
        "format-icons": {
            "urgent": "",
            "default": "",
            "1": "󰅨",
            "2": "󰖟",
            "3": "",
            "4": "󰠮",
            "5": "",
            "6": "󰅨",
            "7": "󰎄"
        }
    },

    "hyprland/window": {
        "max-length": "40"
    },

    "battery": {
        "format":"{icon}  {capacity}%",
        "format-charging":"{icon}  {capacity}%",
        "format-plugged": "{capacity}%  ",
        "format-alt": "{icon}  {time}",
        "format-icons": ["", "", "", "", ""],
        "tooltip": false,
        "states": {
            "good": 95,
            "warning": 30,
            "critical": 15
        }
    },

    "memory": {
        "format": "󰍛  {used}%",
        "interval": 5
    },

    "cpu": {
        "format": "󰻠  {usage}%",
        "format-alt": "󰻠  {avg_frequency} GHz",
        "interval": 5
    },

    "network": {
        "format-wifi": "󰤨  {essid}",
        "format-linked": " {ifname} (No IP)",
        "format-disconnected": "󰤭",
        "format-alt": "󰤨 {ifname}: {ipaddr}/{cidr}",
        "tooltip-format": "{essid}",
        "on-click-right": "nm-connection-editor",
        "tooltip": false
    },

    "tray": {
        "icon-size": 16,
        "spacing": 5
    },

    "backlight": {
        "format": "{icon}  {percent}%",
        "format-icons": ["", "", "", "", "", "", "", "", ""],
        "on-scroll-up": "brightnessctl set +10%",
        "on-scroll-down": "brightnessctl set 10%-",
        "tooltip": false
    },

    "pulseaudio": {
        "format": "{icon}  {volume}%",
        "format-muted": "󰝟",
        "format-icons": {
            "default": ["󰕿", "󰖀", "󰕾"],
            "headphone": ""
        },
        "on-click": "pavucontrol",
        "tooltip": false,
        "on-scroll-up": "wpctl set-volume -l 1.4 @DEFAULT_AUDIO_SINK@ 5%+",
        "on-scroll-down": "wpctl set-volume -l 1.4 @DEFAULT_AUDIO_SINK@ 5%-"
    },

    "hyprland/language": {
        "format": "󰌌  {}",
        "format-uk": "укр",
        "format-en": "eng"
    }
}