You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
18 lines
425 B
4 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# This script will add a Fireflies entry to every file you give it,
|
||
|
# assuming they of xscreensaverrc file format.
|
||
|
|
||
|
tmpfile=`mktemp /tmp/xrc.XXXXXX`
|
||
|
for file in "$@"; do
|
||
|
[ -f $file ] || continue
|
||
|
grep -q 'fireflies' $file && continue
|
||
|
cp $file $tmpfile
|
||
|
cat $tmpfile | sed '
|
||
|
/programs:/ a\
|
||
|
GL: "Fireflies 3D" fireflies -root \\n\\
|
||
|
' > $file
|
||
|
done
|
||
|
|
||
|
rm $tmpfile
|