mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-31 22:08:34 +00:00
Merge branch 'master' of gitosis@majnematic.com:davesdots
This commit is contained in:
commit
0da07d9205
2 changed files with 9 additions and 3 deletions
|
@ -31,11 +31,14 @@ extract ()
|
||||||
*.tar)
|
*.tar)
|
||||||
tar xf "${1}"
|
tar xf "${1}"
|
||||||
;;
|
;;
|
||||||
*.tar.gz|*.tgz|*.tar.z)
|
*.tar.gz|*.tgz)
|
||||||
tar zxf "${1}"
|
gunzip -c "${1}" | tar xf -
|
||||||
|
;;
|
||||||
|
*.tar.z)
|
||||||
|
uncompress -c "${1}" | tar xf -
|
||||||
;;
|
;;
|
||||||
*.tar.bz2|*.tbz2)
|
*.tar.bz2|*.tbz2)
|
||||||
tar jxf "${1}"
|
bzcat "${1}" | tar xf -
|
||||||
;;
|
;;
|
||||||
*.zip|*.jar)
|
*.zip|*.jar)
|
||||||
unzip -qo "${1}"
|
unzip -qo "${1}"
|
||||||
|
|
3
screenrc
3
screenrc
|
@ -7,6 +7,9 @@ vbell on
|
||||||
# default scrollback to 5000 lines
|
# default scrollback to 5000 lines
|
||||||
defscrollback 5000
|
defscrollback 5000
|
||||||
|
|
||||||
|
# when in history mode, use incremental searching
|
||||||
|
markkeys "^S=/:^R=?"
|
||||||
|
|
||||||
# turn off visual bell
|
# turn off visual bell
|
||||||
termcapinfo * vb@
|
termcapinfo * vb@
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue