* Added arch.conf file which is loaded from the UFD * Allows configuration without rebuilding the ISO * Added connect-to-network script that uses arch.conf * Available for manual execution from the command line * Used by mount-backup-shares * Added hardinfo with Conky hint and keyboard shortcut (Super+i) * Avoid deleting a newly created iso right after building * Conky * Settings can now be stored on the UFD * Transparancy fixed * mount-all-volumes doesn't print the mountpoint for ARCH_HH * NetworkManager should no longer hold up the boot time * Prime95 * Adjusted default length due to the summer heat * Fixed bug where hw-diags would let it run forever * Removed extra themes to try and reduce the overall size * Switching to nodm over lightdm
10 lines
235 B
Bash
10 lines
235 B
Bash
#!/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
|
|
|