This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# LightDM wrapper to run around X sessions. | |
echo "Running X session wrapper" | |
# Load profile | |
for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do | |
if [ -f "$file" ]; then | |
echo "Loading profile from $file"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# TODO | |
# - check free disk | |
# - check return values for every command | |
V=/data/void | |
DNS=8.8.8.8 | |
URL=http://xbps.nopcode.org/rootfs/ | |
ROOTFS=void-raspberrypi-rootfs-20191111.tar.xz |