Add configs for gimp

This commit is contained in:
2025-10-02 19:34:24 -05:00
parent a3707b5ca9
commit eb623754e6
55 changed files with 1729 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/sh
# for reference, default linux directory was in $XDG_CONFIG_HOME/GIMP/
nohup \
env GIMP2_DIRECTORY=$XDG_CONFIG_HOME/gimp \
gimp \
> /dev/null 2>&1 \
&

View File

@@ -1,5 +1,6 @@
#!/bin/zsh
# wrapper for mv; for the given target, create any dirs which do not already exist
mvd_target_dir=$(dirname "${@: -1}")
[[ ! -d "$mvd_target_dir" ]] && mkdir -p "$mvd_target_dir"
exec mv "$@"