diff options
author | Camil Staps | 2023-02-16 22:13:22 +0100 |
---|---|---|
committer | Camil Staps | 2023-02-16 22:15:54 +0100 |
commit | 7af396aa6a93d65f9ae4943b65f8a4dfc95bb2b5 (patch) | |
tree | 056834f90b90f4c34e1dce7ab6aa7b4adbcf55b7 /system/.profile | |
parent | Vim: add snug; fold clean using syntax; set textwidth by default for folding ... (diff) |
Remove clean directory (outdated now that we use nitrile)
Diffstat (limited to 'system/.profile')
-rw-r--r-- | system/.profile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/system/.profile b/system/.profile index 85c7944..1b328de 100644 --- a/system/.profile +++ b/system/.profile @@ -1,6 +1,3 @@ -export CLEAN_HOME=/opt/clean -export CLEANLIB=$CLEAN_HOME/lib/exe - export PATH="/usr/local/texlive/2021/bin/x86_64-linux:$PATH" export PATH="/sbin:$PATH" export PATH="/usr/sbin:$PATH" @@ -12,7 +9,6 @@ export PATH="$PATH:/opt/zotero" export PATH="$PATH:$HOME/.composer/vendor/bin" export PATH="$PATH:$HOME/.cabal/bin" export PATH="$PATH:$HOME/.cargo/bin" -export PATH="$PATH:$CLEAN_HOME/bin" export PATH="$HOME/.nitrile/bin:$PATH" export PATH="$HOME/bin:$PATH" export PATH="$HOME/bin.local:$PATH" @@ -35,28 +31,6 @@ export HISTTIMEFORMAT="%Y-%m-%d %T " export QUOTING_STYLE=literal export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=gasp -Dsun.java2d.opengl=true' -cpmq() { - res="$(cpm $@)" - echo "$res" | grep -i 'Error' >/dev/null - if [ $? -eq 0 ]; then - echo "$res" | grep -v Analyzing | grep -i '^\|Error\|Warning' - return -1 - else - echo "$res" | grep --color=never -i 'Finished making.' - return 0 - fi -} - -abcclean() { - find \ - "$CLEAN_HOME/lib" \ - ~/projects/clean/{itasks-sdk,platform,abc-interpreter} \ - . \ - -name '*.abc' \ - -not -name '_system.abc' \ - -exec rm {} \; -} - shopt -s globstar [ "$(tty)" = "/dev/tty1" ] && exec startx |