You are not logged in.
Pages: 1
as modified, on the shortcut menu, to "extract here" use engrampa, not xarchiver.
Offline
If you are talking about the defaults apps that are included with your system that is up to each distro.
Offline
Maybe my solution will appeal to you.
In depths of internet I found avfs (http://avf.sourceforge.net/). It's virtual filesystem and work like archive viewer in midnight commander. Just click and open it, with one difference - allways open archive in new thunar window ;/
Install avfs (probably in distro repository) and save this script somewhere and when open an archive use 'own command'
#!/bin/bash
# check wheter avfs is running
if [[ -z $(ps aux|grep [a]vfsd) ]]; then
mountavfs
fi
PUNKTMONTOWANIA=$HOME/.avfs
FILE=$(echo $1 | awk -F '/' '{print $NF}')
WD=$(echo $1 | awk -F "$FILE" '{print $1}'|awk -F "$PUNKTMONTOWANIA" '{print $NF}')
NPATH=$PUNKTMONTOWANIA$WD$FILE"#/"
exo-open "$NPATH"
In biger archives (more than 100MB) works faster than file-roller or xarchiver
Last edited by i902871 (2015-11-29 18:15:28)
Offline
Pages: 1
[ Generated in 0.009 seconds, 7 queries executed - Memory usage: 535.03 KiB (Peak: 550.74 KiB) ]