5 lines
195 B
Bash
5 lines
195 B
Bash
|
#!/bin/sh
|
||
|
# Link some stuff to /usr/local/bin for ease of access with menus
|
||
|
if [ "$EUID" -ne 0 ]; then echo "Please run as root"; exit; fi
|
||
|
ln -s $(pwd)/apsalar/audacious /usr/local/bin/audacious
|