hulu-automuter 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +25 -2
- data/bin/hulu-automuter +1 -0
- data/lib/hulu_automuter/version.rb +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -24,14 +24,16 @@ Benefits:
|
|
24
24
|
|
25
25
|
gem install hulu-automuter
|
26
26
|
|
27
|
-
|
28
|
-
|
27
|
+
Confirm that the installation succeeded by typing `hulu-automuter -h`. If you
|
28
|
+
get an error message saying that hulu-automuter is missing, then you probably
|
29
|
+
have a `PATH` issue. Try one of these workarounds:
|
29
30
|
|
30
31
|
* Put the directory where Rubygems installs executables on your `PATH`
|
31
32
|
* Try installing with `sudo gem install hulu-automuter`
|
32
33
|
|
33
34
|
To upgrade Hulu Automuter to a newer version, just repeat the installation procedure.
|
34
35
|
|
36
|
+
|
35
37
|
## Usage
|
36
38
|
|
37
39
|
hulu-automuter [ -p port ]
|
@@ -56,6 +58,27 @@ browser.
|
|
56
58
|
Press `CTRL-c` to stop hulu-automuter.
|
57
59
|
|
58
60
|
|
61
|
+
## Tips
|
62
|
+
|
63
|
+
If you don't want to keep changing your web browser proxy settings manually
|
64
|
+
when you want to use Hulu Automuter and then return to normal web
|
65
|
+
browsing, try one of these tips:
|
66
|
+
|
67
|
+
* See if your browser or your OS has a "Create Location" feature that lets you
|
68
|
+
save your HTTP proxy configurations as "Locations" that you can choose from a drop-down.
|
69
|
+
* Use one web browser program for general web browsing, and another web browser
|
70
|
+
for HTTP proxying. Hulu Automuter is not the only proxy program you may want
|
71
|
+
to use. [Polipo][polipo], [Tor][tor], and [Privoxy][privoxy] are others.
|
72
|
+
|
73
|
+
[tor]: https://www.torproject.org/
|
74
|
+
[polipo]: http://www.pps.jussieu.fr/~jch/software/polipo/
|
75
|
+
[privoxy]: http://www.privoxy.org/
|
76
|
+
|
77
|
+
There are also sure to be scripts out there that let you change your HTTP proxy
|
78
|
+
settings from the command line. If you know of one, feel free to add it to the
|
79
|
+
[wiki](https://github.com/danchoi/hulu_automuter/wiki).
|
80
|
+
|
81
|
+
|
59
82
|
## Bug reports and feature requests
|
60
83
|
|
61
84
|
Please submit these at either of these places:
|
data/bin/hulu-automuter
CHANGED