-
Notifications
You must be signed in to change notification settings - Fork 0
/
infiren.conf
51 lines (40 loc) · 2.24 KB
/
infiren.conf
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
# infiren.conf
# ------------------------------------------------------------------------------
# -
# Interactive File Renamer (InFiRen) -
# -
# Created by Fonic <https://github.com/fonic> -
# Date: 04/23/19 - 04/25/24 -
# -
# ------------------------------------------------------------------------------
# Initial directory (if empty, current working directory is used)
INITIAL_DIRECTORY=""
# Initial filter pattern (see 'man find', option '-name pattern' for syntax;
# '*' == all files)
FILTER_PATTERN="*"
# Initial filter invert setting ('true'/'false'; 'true' == inversion enabled)
FILTER_INVERT="false"
# Initial filter case setting ('true'/'false'; 'true' == case sensitive)
FILTER_CASE="false"
# Initial recursive mode setting ('true'/'false'; 'true' == recursion enabled)
RECURSIVE_MODE="false"
# Initial command playback delay (in seconds, fractions are supported; '0' ==
# no delay)
PLAYBACK_DELAY="0.25"
# Options passed to 'sort' when sorting file/folder listings (see 'man sort'
# for valid/available options)
SORT_OPTS=("-V")
# Load/save command history from/to file on startup/exit ('true'/'false')
PERSISTENT_HISTORY="true"
# File used to store command history (only if PERSISTENT_HISTORY is enabled)
# ${APP_DIR}: directory where app executable ('infiren.sh') is stored
# ${APP_NAME}: name of app executable ('infiren.sh') without extension
# ${HOME}: home directory of user running/executing the application
#HISTORY_FILE="${HOME}/.config/${APP_NAME}/${APP_NAME}.hst"
HISTORY_FILE="${APP_DIR}/${APP_NAME}.hst"
# File used to store macros (managed via commands 'save-macro'/'load-macro')
# ${APP_DIR}: directory where app executable ('infiren.sh') is stored
# ${APP_NAME}: name of app executable ('infiren.sh') without extension
# ${HOME}: home directory of user running/executing the application
#MACROS_FILE="${HOME}/.config/${APP_NAME}/${APP_NAME}.mac"
MACROS_FILE="${APP_DIR}/${APP_NAME}.mac"