* All non-minimal packages/configs have been separated from the base setup * `"Build Linux" -b` will only build the full version
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
|
|
|