diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-28 06:57:24 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-28 06:57:24 -0600 |
| commit | d1660f7c7cf90314222319378fea4ffe87f4671f (patch) | |
| tree | 381e3bde1c1fb05aabeceacf4698d5db4bec232d /dotfiles/dwm/.config/conky/conky.conf | |
| parent | d4d997653574b5a00c01f02a3fb45001cd86c2f4 (diff) | |
fix(hyprland): resolve waybar 25s startup delay and separate X11 dotfiles
- Add portals.conf with Settings=none to prevent D-Bus timeout
- Reorder exec-once: portal/dbus first, then services, then apps
- Move X11-specific dotfiles from common/ to dwm/ (Xresources, xinitrc,
picom, redshift, conky, flameshot, touchpad-indicator)
- Delete obsolete xdg-desktop-portal-gtk drop-in from common/
Diffstat (limited to 'dotfiles/dwm/.config/conky/conky.conf')
| -rw-r--r-- | dotfiles/dwm/.config/conky/conky.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dotfiles/dwm/.config/conky/conky.conf b/dotfiles/dwm/.config/conky/conky.conf new file mode 100644 index 0000000..09ee8ea --- /dev/null +++ b/dotfiles/dwm/.config/conky/conky.conf @@ -0,0 +1,24 @@ +conky.config = { +out_to_console = true, +out_to_x = false, +background = false, +update_interval = 30, +total_run_times = 0, +}; +conky.text = [[ \ +${if_existing /sys/class/power_supply/BAT0}\ + \ +${battery_percent BAT0}% \ +${if_existing /sys/class/power_supply/BAT0/status Charging} ${endif}\ +${if_existing /sys/class/power_supply/BAT0/status Discharging} ${endif}\ +${endif}\ +${if_existing /sys/class/power_supply/BAT1}\ + \ +${battery_percent BAT1}% \ +${if_existing /sys/class/power_supply/BAT1/status Charging} ${endif}\ +${if_existing /sys/class/power_supply/BAT1/status Discharging} ${endif}\ +${endif}\ + ${fs_used}/${fs_size} \ + ${time %a %B %d} \ + ${time %I:%M %p %Z} +]]; |
