Makefile for basic installation added
[truecrypt-extra.git] / etc.default.truecrypt
1 ### TrueCrypt Extra root configuration
2 ### This file is a part of `truecrypt-extra`
3 ###
4 ### (c) Andrew Sichevoi, http://thekondor.net
5 ### Distributed in the terms of GNU GPL v3.0+ license
6 ###
7 ### The latest version is available on http://git.thekondor.net
8
9 ### application: [common]
10 ### description: specifies a path to TrueCrypt binary
11 ### default    : /usr/bin/truecrypt 
12 TRUECRYPT_BINARY=/usr/bin/truecrypt
13
14 ### application: pm-utils
15 ### description: specifies whether should *all* mounted TC volumes unmounted
16 ###              on sleep/hibernate or not
17 UNMOUNT_ON_SLEEP=true
18
19 ### application: truecrypt-mount
20 ### description: specifies user's root directory where all TC's volumes to are mounted in
21 ###              %username% is substituted with a name of the user
22 ### default    : /home/%username%/.mount/encrypted
23 USER_MOUNT_ROOT=/home/%username%/.mount/encrypted
24
25 ### application: truecrypt-mount
26 ### description: specifies should be a newly mounted TC's volume immediately shown
27 ###              in the File Browser or not.
28 ### default    : true
29 EXPLORE_MOUNTED_VOLUME=true
30
31 ### application: truecrypt-mount
32 ### description: specifies the way errors are reported while mounting TC's volumes.
33 ###              %error% is substituted with the real error message
34 ### default    : to the console, throuh /bin/echo
35 ERROR_REPORTING_CHANNEL='/usr/bin/zenity --error --no-markup --title=TrueCrypt --text="%error%"'
36
37 ### Alternative ways:
38 ### ERROR_REPORTING_CHANNEL='/bin/echo %error%'
39 ### ERROR_REPORTING_CHANNEL='/usr/bin/notify-send --app-name=TrueCrypt --icon=error "TrueCrypt mount error" "%error%"'
40