blob: 2451b6abd09260948066ebd24e0a7da6f83b7361 (
plain)
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
|
diff -Naur a/config.rkt b/config.rkt
--- a/config.rkt 2014-12-14 18:49:30.181361600 -0800
+++ b/config.rkt 2014-12-14 18:52:13.599355467 -0800
@@ -65,7 +65,7 @@
; location of sound directory (currently depends on running from same dir
; change to /usr/share/blight/sounds (or something) once a proper
; installer is to be had
-(define sound-dir (build-path "sounds"))
+(define sound-dir (build-path "/usr/share/blight/sounds"))
; list of sound files
(define sounds (list
(build-path sound-dir "New Message.wav")
@@ -86,7 +86,7 @@
(define make-noise-default #t)
; blight icons for the buddy list
-(define icon-dir (build-path "icons"))
+(define icon-dir (build-path "/usr/share/blight/icons"))
; list of icon files
(define icons (list
(build-path icon-dir "offline.png")
@@ -97,7 +97,7 @@
(define avatar-dir (build-path tox-path "avatars"))
-(define logo-dir (build-path "img"))
+(define logo-dir (build-path "/usr/share/icons/hicolor/128x128/apps"))
(define logo (build-path logo-dir "blight-logo-128px.png"))
|