diff options
author | xyz <gky44px1999@gmail.com> | 2021-07-24 10:36:00 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-07-24 10:36:00 -0700 |
commit | 66338e2df08ceab04e30e89012811678ff4fdcf6 (patch) | |
tree | d1a36a58ae54719a96a5d1111f0cbbf254b7482a | |
parent | df62744121bff85897eda3d756e032faf2ea2c1d (diff) |
new qmake make make install script, increase bash hist to 4000
-rw-r--r-- | .bash_profile | 4 | ||||
-rwxr-xr-x | .local/bin/qmmi | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile index 21a3fb5d..1b47b3ee 100644 --- a/.bash_profile +++ b/.bash_profile @@ -9,8 +9,8 @@ export XDG_CACHE_HOME="$HOME/.cache" export XDG_DATA_HOME="$HOME/.local/share" export PATH="$(find ~/.local/bin -type d -printf %p:)$PATH" -export HISTSIZE=3000 -export HISTFILESIZE=3000 +export HISTSIZE=4000 +export HISTFILESIZE=4000 export MANPAGER="nvim +Man!" export EDITOR=nvim diff --git a/.local/bin/qmmi b/.local/bin/qmmi new file mode 100755 index 00000000..9427ea24 --- /dev/null +++ b/.local/bin/qmmi @@ -0,0 +1,5 @@ +#/bin/sh + +qmake +make -B +sudo make install |