* Switched to Firefox * Midori was crashing too often * Rewrote the wallpaper code * Should fix issue where no wallpaper was shown if running from UFD * The pacman mirrorlist is now a static list. * This needs manually updated at build-time Cleanup * Disabled console screen blanking * Fixed typo preventing aliases from loading correctly * mount-all-volumes now removes /media/hhtech properly * Removed leftover netctl files * Removed leftover nodm BREAKING: Moved config files back inside UFD/arch instead of UFD/config
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
|
|
|