mirror of
https://github.com/Hopiu/RandomWallpaperGnome3.git
synced 2026-03-16 22:20:24 +00:00
13 lines
No EOL
234 B
Bash
Executable file
13 lines
No EOL
234 B
Bash
Executable file
#!/bin/bash
|
|
|
|
BASEDIR="randomwallpaper@iflow.space"
|
|
ZIPNAME="$BASEDIR.zip"
|
|
|
|
rm $ZIPNAME
|
|
rm $BASEDIR/schemas/gschemas.compiled
|
|
rm $BASEDIR/wallpapers/*
|
|
glib-compile-schemas $BASEDIR/schemas/
|
|
|
|
cd $BASEDIR
|
|
zip -r $ZIPNAME .
|
|
mv $ZIPNAME .. |