mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-23 14:32:13 +08:00
9 lines
223 B
Bash
Executable File
9 lines
223 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$1" == "light" ]; then
|
|
ln -svf light.lfs.css stylesheets/lfs-xsl/lfs.css
|
|
elif [ "$1" == "dark" ]; then
|
|
ln -svf dark.lfs.css stylesheets/lfs-xsl/lfs.css
|
|
else
|
|
echo '"'"$1"'" is not "light" or "dark"'
|
|
fi
|