My personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: added notification center to waybar

+12 -2
+11 -1
waybar/.config/waybar/default-modules.jsonc
··· 35 35 }, 36 36 37 37 "custom/notifications": { 38 - "format": 38 + "tooltip": false, 39 + "format": "{icon}", 40 + "format-icons": { 41 + "notification": "", 42 + "none": "" 43 + }, 44 + "return-type": "json", 45 + "exec-if": "which swaync-client", 46 + "exec": "swaync-client -swb", 47 + "on-click": "swaync-client -t -sw", 48 + "escape": true 39 49 } 40 50 41 51 }
+1 -1
waybar/.config/waybar/hyprland.jsonc
··· 2 2 "layer": "top", 3 3 "modules-left": [ "custom/search", "hyprland/workspaces" ], 4 4 "modules-center": [ "hyprland/window" ], 5 - "modules-right": [ "custom/updates", "network", "battery", "clock", "custom/power" ], // battery can be removed on desktop 5 + "modules-right": [ "custom/updates", "network", "battery", "clock", "custom/notifications" ], // battery can be removed on desktop 6 6 7 7 "include": [ "~/.config/waybar/default-modules.jsonc" ], 8 8