summarylogtreecommitdiffstats
path: root/wiliwili.sh
blob: a018c547c26a9b555743ce93e949325e8f07cf8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

export _portableConfig="cn.xfangfang.wiliwili"

if [[ "$@" = "--actions opendir" ]]; then
	portable --actions opendir
elif [[ "$@" = "--actions share-files" ]]; then
	portable --actions share-files
elif [[ "$@" = "--actions quit" ]]; then
	portable --actions quit
else
	exec portable -- $@
fi