chore: updates here and there
This commit is contained in:
parent
ed190866f5
commit
05708570cb
14 changed files with 58 additions and 67 deletions
|
|
@ -1,13 +1,13 @@
|
|||
PID="$$"
|
||||
process_id="$$"
|
||||
(
|
||||
if [ "$(inxi -aG | grep -c 'Monitor')" -eq 1 ]; then
|
||||
setfont Uni3-Terminus32x16.psf.gz
|
||||
stty -F /proc/$PID/fd/0 rows 65 cols 195
|
||||
stty -F /proc/$process_id/fd/0 rows 65 cols 195
|
||||
else
|
||||
setfont Uni3-Terminus16.psf.gz
|
||||
stty -F /proc/$PID/fd/0 rows 90 cols 320
|
||||
stty -F /proc/$process_id/fd/0 rows 90 cols 320
|
||||
fi >/dev/null 2>&1 &
|
||||
)
|
||||
unset PID
|
||||
unset process_id
|
||||
|
||||
# vim: ft=sh
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
set -a
|
||||
|
||||
PATH="$HOME/.local/share/go/bin:$PATH"
|
||||
PATH="${$(find -L ~/.local/bin -type d -printf %p:)%%:}:$PATH"
|
||||
|
||||
# lc vars
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
[[ $- != *i* ]] && return
|
||||
|
||||
. ~/.cargo/env
|
||||
|
||||
# ls colors
|
||||
eval "$(dircolors -b)"
|
||||
|
||||
|
|
@ -104,5 +106,12 @@ alias gcl="git clone"
|
|||
# docker aliases
|
||||
alias dc="docker compose"
|
||||
|
||||
# tmux aliases
|
||||
alias tn="tmux new-session -s"
|
||||
alias ta="tmux a -t"
|
||||
|
||||
# disable xon controll chars
|
||||
stty -ixon
|
||||
|
||||
# print tasks on startup
|
||||
cat ~/.taskell.md
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue