* Script work is brought into better focus * New layout will be used to better package the python scripts * No hidden folders (they will be hidden at build time) * All building should be done under setup/ * Avoids ambiguous .bin/.cbin folders at root of project
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
|
|
|