My personal dotfiles
0
fork

Configure Feed

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

feat: added all modules to waybar modules

legoraft 84820d75 34b220e2

+121
+35
waybar/.config/waybar/modules/battery.jsonc
··· 1 + { 2 + "group/battery-group": { 3 + "orientation": "inherit", 4 + "drawer": { 5 + "transition-duration": 300, 6 + "children-class": "battery-child", 7 + "transition-left-to-right": false 8 + }, 9 + "modules": [ "battery", "battery#percentage" ] 10 + }, 11 + 12 + "battery": { 13 + "interval": 60, 14 + "tooltip": false, 15 + "format": "{icon}", 16 + "format-icons": [ "󰂎", "󰁺", "󰁻", "󰁼", "󰁽", "󰁾", "󰁿", "󰂀", "󰂁", "󰂂", "󰁹" ], 17 + "format-charging": "{capacity}% 󰂄", 18 + "format-critical": "{capacity}% 󰂃", 19 + "states": { 20 + "warning": 25, 21 + "critical": 10 22 + } 23 + }, 24 + 25 + "battery#percentage": { 26 + "interval": 60, 27 + "tooltip": false, 28 + "format": "{capacity}%", 29 + "format-charging": "", 30 + "format-critical": "", 31 + "states": { 32 + "critical": 10 33 + } 34 + } 35 + }
+29
waybar/.config/waybar/modules/network.jsonc
··· 1 + { 2 + "group/network-group": { 3 + "orientation": "inherit", 4 + "drawer": { 5 + "transition-duration": 300, 6 + "children-class": "network-child", 7 + "transition-left-to-right": false 8 + }, 9 + "modules": [ "network", "network#name" ] 10 + }, 11 + 12 + "network": { 13 + "interval": 60, 14 + "tooltip": false, 15 + "format": "{icon}", 16 + "format-icons": { 17 + "wifi": [ "󰤯", "󰤟", "󰤢", "󰤥", "󰤨" ], 18 + "ethernet": [ "󰌹" ], 19 + "disconnected": [ "󰌺" ] 20 + } 21 + }, 22 + 23 + "network#name": { 24 + "interval": 2, 25 + "tooltip": false, 26 + "format-wifi": "{bandwidthTotalBytes} {signalStrength}% {essid}", 27 + "format-ethernet": "{bandwidthTotalBytes} {ifname}" 28 + } 29 + }
+28
waybar/.config/waybar/modules/power.jsonc
··· 1 + { 2 + "group/power": { 3 + "orientation": "inherit", 4 + "drawer": { 5 + "transition-duration": 300, 6 + "children-class": "power-child" 7 + }, 8 + "modules": [ "custom/power", "custom/reboot", "custom/logout" ] 9 + }, 10 + 11 + "custom/power": { 12 + "format": "", 13 + "tooltip": false, 14 + "on-click": "$HOME/.config/waybar/scripts/killwindows.sh && sleep 1 && systemctl poweroff" 15 + }, 16 + 17 + "custom/reboot": { 18 + "format": "", 19 + "tooltip": false, 20 + "on-click": "$HOME/.config/waybar/scripts/killwindows.sh && sleep 1 && reboot" 21 + }, 22 + 23 + "custom/logout": { 24 + "format": "󰍃", 25 + "tooltip": false, 26 + "on-click": "hyprctl dispatch exit" 27 + } 28 + }
+21
waybar/.config/waybar/modules/tray.jsonc
··· 1 + { 2 + "group/tray-group": { 3 + "orientation": "inherit", 4 + "drawer": { 5 + "transition-duration": 300, 6 + "children-class": "tray-child", 7 + "transition-left-to-right": false 8 + }, 9 + "modules": [ "custom/expand", "tray" ] 10 + }, 11 + 12 + "custom/expand": { 13 + "format": "", 14 + "tooltip": false 15 + }, 16 + 17 + "tray": { 18 + "icon-size": 16, 19 + "spacing": 10 20 + } 21 + }
+8
waybar/.config/waybar/modules/updates.jsonc
··· 1 + { 2 + "custom/updates": { 3 + "format": " {}", 4 + "interval": 1800, 5 + "exec": "checkupdates | wc -l", 6 + "tooltip": false 7 + } 8 + }