making a hacky script for symlinking things to /usr/local/bin
This commit is contained in:
parent
893d1a57f2
commit
d49bdfb70c
|
@ -0,0 +1,4 @@
|
|||
#!/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
|
Loading…
Reference in New Issue