blob: cabf2d8e5fa5b2c89b4f45144ea54d151d3b7bd6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
# vim:syntax=sh
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
set bell-style visible
# because on some hosts the login path is fucked, unset in .local
# if it causes irritation:
cd ~ || cd || exit 151
|