aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.after/functions.zsh
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2019-10-19 12:19:10 +0200
committerDavid Runge <dave@sleepmap.de>2019-10-19 12:19:10 +0200
commit9972f28fa5f596081a2b9812600c50fec4e82bb5 (patch)
treeb18bdd360fcd0909a9f25d09fabe66070df1cd38 /.zsh.after/functions.zsh
parent1b4677ab012bd7d18cf05ae28745e07d87f9d9a5 (diff)
parentf3be3ab5d8853b2c395e45329c8c55374d048311 (diff)
downloaddotfiles-9972f28fa5f596081a2b9812600c50fec4e82bb5.tar.gz
dotfiles-9972f28fa5f596081a2b9812600c50fec4e82bb5.tar.bz2
dotfiles-9972f28fa5f596081a2b9812600c50fec4e82bb5.tar.xz
dotfiles-9972f28fa5f596081a2b9812600c50fec4e82bb5.zip
Merge branch 'master' of sleepmap.de:dave/dotfiles
* 'master' of sleepmap.de:dave/dotfiles: .config/nvchecker/nvchecker.ini: Switching to gitlab upstream for qastools. Adding polyphone, libopenshot, libopenshot-audio, openshot, libquicktime, libconfig, vico, mephisto.lv2 and lv2lint. .config/systemd/user/jack@.service: Removing custom jack@ user service (it has been upstreamed and is available since jack2 1.9.13). .config/sway/config: Adding common (local) location for background image (which can be a symlink to another file). .config/sway/config: Setting default_border pixel 2, to not have headers. Reactivating keyboard shortcut for layout toggle split. .config/nvchecker/nvchecker.ini: Adding audiofile, redland, ladspa, ddrescue, raptor, rasqal, python-ipy, gandi.cli, flyspray and changing upstreams of a2jmidid, solfege and redkite. .zsh.after/functions.zsh: Adding .tar.lz and .lz to ex() and lstar() (respectively). .vim/addons.vim: Removing youcompleteme and adding coverage-highlight. .config/psd/psd.conf: Adding qutebrowser.
Diffstat (limited to '.zsh.after/functions.zsh')
-rw-r--r--.zsh.after/functions.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/.zsh.after/functions.zsh b/.zsh.after/functions.zsh
index 16dc6de..3778133 100644
--- a/.zsh.after/functions.zsh
+++ b/.zsh.after/functions.zsh
@@ -134,6 +134,9 @@ ex() {
*.tar.gz)
tar xvzf $1
;;
+ *.tar.lz)
+ tar xvzf $1
+ ;;
*.bz2)
bunzip2 $1
;;
@@ -209,6 +212,9 @@ lstar() {
*.gz)
tar -tvf "$1" --force-local
;;
+ *.lz)
+ tar -tvf "$1" --force-local
+ ;;
*.rar)
unrar lb "$1"
;;