123456789101112131415161718192021 |
- #!/bin/sh
- websitemenu() {
- options=" artixlinux.org\n forum.artixlinux.org\n discuss.grapheneos.org\n openbsd.org\n suckless.org"
- selected=$(echo "$options" | dmenu -i -p "Website:" -l 10 )
- if [ "$selected" = " artixlinux.org" ]; then
- $BROWSER https://artixlinux.org
- elif [ "$selected" = " forum.artixlinux.org" ]; then
- $BROWSER https://forum.artixlinux.org
- elif [ "$selected" = " discuss.grapheneos.org" ]; then
- $BROWSER https://discuss.grapheneos.org
- elif [ "$selected" = " openbsd.org" ]; then
- $BROWSER https://openbsd.org
- elif [ "$selected" = " suckless.org" ]; then
- $BROWSER https://suckless.org
- return
- fi
- }
- websitemenu
|