blob: e93af8953201a420969bb47518cf9c6a008ba276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
normal() {
fastfetch -c "$HOME/.config/fastfetch/ascii.jsonc"
printf "\n"
}
if [ -z $(pgrep VRChat) ]; then
if [ "$(cat /etc/hostname)" = "Witchen" ]; then
normal
else
normal
fi
fi
|