10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$1" == "--menu" ]]; then
|
|
rofi -show drun
|
|
|
|
elif [[ "$1" == "--search" ]]; then
|
|
firefox --new-tab "https://google.com"
|
|
|
|
fi
|