2015-01-16 15:11:53 -06:00
|
|
|
#!/bin/bash
|
|
|
|
#config.sh
|
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# Zymp3 Configuration File
|
2015-01-16 15:11:53 -06:00
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# FILE PATHS
|
2015-08-09 18:53:58 -07:00
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# choose your own install path
|
2015-08-09 18:53:58 -07:00
|
|
|
INSTALLPATH="/opt/zymp3"
|
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# You can change this but icon may not appear
|
2015-08-09 18:53:58 -07:00
|
|
|
IMGDIR="/usr/share/pixmaps"
|
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# Desktop icon directory ( default recommended)
|
2015-08-09 18:53:58 -07:00
|
|
|
DESKTOPFILEDIR="/usr/share/applications"
|
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# Default gui - switch between zenity or yad
|
2015-02-25 02:06:39 -06:00
|
|
|
SET_GUI_BIN="zenity"
|
2015-08-09 18:53:58 -07:00
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# ogg, mp3, flac
|
|
|
|
EXTENSION="ogg"
|
2015-01-16 15:11:53 -06:00
|
|
|
|
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# 96 - 320 (kilobytes)
|
2015-08-09 18:53:58 -07:00
|
|
|
BITRATE="192"
|
2015-05-05 12:22:45 -05:00
|
|
|
|
2015-08-09 18:53:58 -07:00
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# Output directory for audio files
|
|
|
|
# must have a trailing slash /
|
|
|
|
MUSICDIR="/home/$USER/Music/"
|
2015-05-05 12:22:45 -05:00
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# VIDEO TMP DIRECTORY
|
|
|
|
# You shouldn't need to change this but you can
|
2015-01-16 15:11:53 -06:00
|
|
|
VIDEOFILE=/tmp/youtube-dl-$RANDOM-$RANDOM.flv
|
2015-03-13 06:39:03 -05:00
|
|
|
CONVERTED=/tmp
|
2015-01-16 15:11:53 -06:00
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# USE FILEBROWSER TO NAME AND SAVE MP3
|
2015-05-23 04:11:34 +00:00
|
|
|
USE_FILE_BROWSER="no" #options- yes, no
|
2015-05-05 12:22:45 -05:00
|
|
|
|
2015-10-15 04:27:48 -07:00
|
|
|
# GUI SETTINGS
|
|
|
|
# Change dimensions of the URL and filename dialogs
|
2015-01-16 15:11:53 -06:00
|
|
|
URL_BOX_HEIGHT="64"
|
2015-08-09 18:53:58 -07:00
|
|
|
|
2015-01-16 15:11:53 -06:00
|
|
|
URL_BOX_WIDTH="512"
|
|
|
|
|
|
|
|
FILENAME_BOX_HEIGHT="64"
|
2015-08-09 18:53:58 -07:00
|
|
|
|
2015-01-16 15:11:53 -06:00
|
|
|
FILENAME_BOX_WIDTH="326"
|