summarylogtreecommitdiffstats
path: root/topera
blob: ddfbb0a0278d2955998d6147d9a7ad098186899c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

kill=false

if ! pidof opera-proxy; then
   opera-proxy 1> /dev/null &
   kill=true
fi

proxychains -f /etc/proxychains.opera-proxy.conf $@

if $kill ; then
   killall opera-proxy
fi