10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if $(which librewolf &>/dev/null); then
|
|
librewolf
|
|
elif $(which librewolf.appimage); then
|
|
librewolf.appimage
|
|
else
|
|
notify-send "[ERROR]" "Failed to start browser"
|
|
fi
|