diff options
author | EuAndreh <eu@euandre.org> | 2023-12-13 03:56:15 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-12-13 03:56:15 -0300 |
commit | 455e5ef28cafddb8c5a4bf9d38817377bb0c2b1f (patch) | |
tree | 557f080fcee965e1b32efc63c320c86868d6a6c7 | |
parent | etc/ssh/config.tmpl: Add lawtech alias (diff) | |
download | dotfiles-455e5ef28cafddb8c5a4bf9d38817377bb0c2b1f.tar.gz dotfiles-455e5ef28cafddb8c5a4bf9d38817377bb0c2b1f.tar.xz |
etc/sh/rc: Move "ulimit -c unlimited" to Bash-specific section
-rw-r--r-- | etc/sh/rc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,8 +3,6 @@ export ENV=~/.profile -ulimit -c unlimited - export XDG_DATA_DIRS="$XDG_DATA_HOME/flatpak/exports/share:/var/lib/flatpak/exports/share${XDG_DATA_DIRS:+:}${XDG_DATA_DIRS:-}" @@ -491,6 +489,9 @@ if [ -z "$BASH_VERSION" ]; then return fi +# shellcheck disable=3045 +ulimit -c unlimited + ln -fs .profile ~/.bashrc export INPUTRC="$XDG_CONFIG_HOME/bash/inputrc" |