7 lines
141 B
Bash
Executable file
7 lines
141 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if command -v wal > /dev/null 2>&1 && [ "$TERM" = "alacritty" ]; then
|
|
wal -qe --theme ~/.config/wal/Blazer-Custom.json
|
|
fi
|
|
|
|
|