12 lines
188 B
Bash
Executable File
12 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd ~/eww-icons || exit 1
|
|
|
|
# Config aktualisieren
|
|
git pull --rebase --autostash
|
|
|
|
# Link setzen, damit eww sie nutzt
|
|
rm -rf ~/.config/eww
|
|
ln -s ~/eww-icons ~/.config/eww
|