* Removed include/iso items since they've been integrated into the new scripts * Moved include/live/* to include/ since there's only one "include" folder now
10 lines
235 B
Bash
Executable file
10 lines
235 B
Bash
Executable file
#!/bin/bash
|
|
|
|
CONKY_RC="$HOME/.conkyrc"
|
|
if [[ -f "/run/archiso/bootmnt/arch/conky.rc" ]]; then
|
|
CONKY_RC="/run/archiso/bootmnt/arch/conky.rc"
|
|
fi
|
|
|
|
sleep 2s && conky -c "${CONKY_RC}" -dq
|
|
sleep 5s && killall conky -c "${CONKY_RC}" -dq
|
|
|