blob: 014f4b105f2e1a84ef3167399b05655b27f12a99 (
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
|