12 lines
287 B
Bash
Executable File
12 lines
287 B
Bash
Executable File
#!/bin/sh
|
|
DOTWRYN="$HOME/.wryn"
|
|
SCHOOL_PATH="$HOME/School"
|
|
RD_PATH="$HOME/RentDynamics"
|
|
SFX_PATH="$HOME/Media/sfx"
|
|
|
|
# ordered from least-preferred to most-preferred
|
|
PREFERRED_EDITOR=(vi vim)
|
|
|
|
# plays audio files located throughout the system
|
|
MEDIA_ENGINE="$(which canberra-gtk-play) -f"
|