14 lines
311 B
Bash
Executable file
14 lines
311 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
FROM="${HOME}/github/mate-themes"
|
|
TO="${HOME}/.themes/TOK/gtk-3.0"
|
|
|
|
[ -d "$FROM" ] || exit 0
|
|
[ -d "$TO" ] || exit 0
|
|
|
|
cd "$FROM"
|
|
git pull
|
|
cp -a desktop-themes/TraditionalOk/gtk-3.0/*.css "${TO}"/
|
|
cp -a desktop-themes/TraditionalOk/gtk-3.0/img/* "${TO}"/img/
|