forked from orangespaceman/ghetto-blaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini.php
46 lines (31 loc) · 840 Bytes
/
config.ini.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
;<?php
;die(); // For further security
;/*
; general site options
[options]
; require a login?
doLogin = false
; log all interactions?
logActions = true
; paths to site files
[system]
; choose your runtime variables, these are important for linux
env = "XDG_RUNTIME_DIR=/run/user/1000 TERM=xterm"
; choose your player (mac = afplay, linux = mplayer)
player = "mplayer"
; choose your tts (mac = say, linux = espeak)
tts = "espeak"
;if you set debug to "" you are able to debug the return value from your player / tts / killall
; warning, if you change this, the command blocks the apacke process
; debug = ""
; debug disabled:
debug = "> /dev/null 2>&1 &"
[paths]
; path to sound clips
sfx = "/home/monitor/Musik/ghetto-blaster/"
; user array (if login is required)
[users]
; format to use:
;username = "password"
;*/
;?>