mirror of
https://github.com/bytequill/dotfiles.git
synced 2025-08-02 06:06:56 +02:00
19 lines
396 B
Bash
Executable File
19 lines
396 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# TODO: find a better place for this auto-exec
|
|
xcompmgr -c -f -n &
|
|
|
|
scripts="$HOME/.config/i3/conky"
|
|
|
|
# Send the header so that i3bar knows we want to use JSON:
|
|
echo '{"version":1}'
|
|
|
|
# Begin the endless array.
|
|
echo '['
|
|
|
|
# We send an empty first array of blocks to make the loop simpler:
|
|
echo '[],'
|
|
|
|
# Now send blocks with information forever:
|
|
exec conky -c "$scripts/conkystatus.conf"
|