-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fonic
committed
Sep 25, 2023
1 parent
005c163
commit 22e9e96
Showing
5 changed files
with
559 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ignore files generated by script | ||
*.hst | ||
*.mac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# infiren.conf | ||
|
||
# ------------------------------------------------------------------------------ | ||
# - | ||
# Interactive File Renamer (InFiRen) - | ||
# - | ||
# Created by Fonic <https://github.com/fonic> - | ||
# Date: 04/23/19 - 09/25/23 - | ||
# - | ||
# ------------------------------------------------------------------------------ | ||
|
||
# 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 macro playback delay (in seconds, fractions are supported; '0' == no | ||
# delay) | ||
MACRO_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" |
Oops, something went wrong.