-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
40 lines (34 loc) · 1.25 KB
/
config.py
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
#!/usr/bin/env python
# encoding: utf-8
#
# Copyright (c) 2014 [email protected]
#
# MIT Licence. See http://opensource.org/licenses/MIT
#
# Created on 2014-02-25
#
"""Variables required by more than one script."""
import os
import shutil
# ----------------------------------------------------------------------
# Keywords assigned to Alfred Keywords/Script Filters
# ----------------------------------------------------------------------
KEYWORD_WORDCOUNTER = 'wcount'
KEYWORD_SETTINGS = 'wcounthelp'
# ----------------------------------------------------------------------
# Help/support URLs
# ----------------------------------------------------------------------
HELP_URL = 'https://github.com/markwk/alfred-workflow-wordcounterapp/issues'
README_URL = 'https://github.com/markwk/alfred-workflow-wordcounterapp'
# ----------------------------------------------------------------------
# Icons
# ----------------------------------------------------------------------
ICON_HELP = 'icons/help.png'
ICON_BUG = 'icons/bug.png'
ICON_UPDATE = 'icons/update-available.png'
ICON_TODAY = 'icons/today.png'
ICON_DAY = 'icons/calendar_day.png'
ICON_DATE_RANGE = 'icons/date_range.png'
ICON_CHART = 'icons/chart.png'
ICON_BLD = 'icons/building.png'
ICON_FILE = 'icons/file.png'