summaryrefslogtreecommitdiff
path: root/ar/.config/lf/lfrc
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-01-29 21:54:51 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-01-29 21:54:51 +0900
commitf9f1ce2af8546c0825192a8c89d596c200d7fe2d (patch)
tree1cb3a411bcc9ebbb429aba050bf7eb9cab3575cc /ar/.config/lf/lfrc
parentcd12c95fbb657a20f256cde65a736ab0ab53e0e6 (diff)
modified lf/lfrc, modified x11/xprofile, modified zsh/scripts.zsh, modified bin/dmenuconnections, created bin/extract
Diffstat (limited to 'ar/.config/lf/lfrc')
-rw-r--r--ar/.config/lf/lfrc18
1 files changed, 11 insertions, 7 deletions
diff --git a/ar/.config/lf/lfrc b/ar/.config/lf/lfrc
index 2015704..6899204 100644
--- a/ar/.config/lf/lfrc
+++ b/ar/.config/lf/lfrc
@@ -194,13 +194,17 @@ cmd extract ${{
*.tar.bz|*.tar.bz2|*.tbz|*.tbz2) tar xjf $fx;;
*.tar.gz|*.tgz) tar xzf $fx ;;
*.tar.xz|*.txz) tar xf $fx ;;
- *.bz2) bunzip2 $fx ;;
- *.rar) unrar e $fx ;;
- *.gz) gunzip $fx ;;
- *.tar) tar xf $fx ;;
- *.zip) unzip $fx ;;
- *.Z) uncompress $fx ;;
- *.7z) 7z x $fx ;;
+ *.bz2) bunzip2 $fx ;;
+ *.lzma) unlzma $fx ;;
+ *.rar) unrar e $fx ;;
+ *.gz) gunzip $fx ;;
+ *.tar) tar xf $fx ;;
+ *.xz) unxz $fx ;;
+ *.zip|*.jar|*.war) unzip $fx ;;
+ *.Z) uncompress $fx ;;
+ *.7z) 7z x $fx ;;
+ *.exe) cabextract $fx ;;
+ *.ace) unace x $fx ;;
esac
}
}}