mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 06:27:16 +08:00
9 lines
259 B
Bash
9 lines
259 B
Bash
|
#!/bin/sh
|
||
|
if [ "$1" == "light" ]; then
|
||
|
cp -v stylesheets/lfs-xsl/light.lfs.css stylesheets/lfs-xsl/lfs.css
|
||
|
elif [ "$1" == "dark" ]; then
|
||
|
cp -v stylesheets/lfs-xsl/dark.lfs.css stylesheets/lfs-xsl/lfs.css
|
||
|
else
|
||
|
echo '"'"$1"'" is not "light" or "dark"'
|
||
|
fi
|