-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathssc.cfg
More file actions
executable file
·55 lines (37 loc) · 1.26 KB
/
Copy pathssc.cfg
File metadata and controls
executable file
·55 lines (37 loc) · 1.26 KB
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
47
48
49
50
51
52
53
54
55
############### Settings #####################
# This is the command to install missing dependencies. It is setup for
# aptitude and Ubuntu by default.
install_app="gksudo"
install_command="apt-get --yes install curl scrot xclip zenity imagemagick"
# Set this option to use either ftp, imageshack, or none
# Setting is case sensitive!
mode=imageshack
ftp_hostname=ftp.host.name
ftp_user=username
ftp_pass=password
# Set this option to the name of the program you
# want to open the screenshot with to edit. Set
# to 0 for none. kolourpaint is a decent program
# but may need to be installed.
# - Default: 0
program=0
# The directory on the server you wish to save to
# - Example: /graphics/screenshot
# NOTE: There is no "/" on the end of this setting!
ftp_save_dir=/graphics/screenshot
# The directory on your machine you wish to save to
# - Example: /home/user/.screenshot
local_save_dir=$HOME/.screenshot
# Quality of image on a scale from 0-100
# - Default: 80
quality=80
# The prefix to access the file via HTTP if FTP is used
# - Example: http://www.site.com/graphics
screenshot_url=http://www.site.com/graphics
if [ -d $local_save_dir ] ; then
cd $local_save_dir
else
mkdir $local_save_dir
cd $local_save_dir
fi
##############################################