aboutsummaryrefslogtreecommitdiff
path: root/source/blog/2014-12-23-mpv-launcher.md
diff options
context:
space:
mode:
authorZhiming Wang <zmwangx@gmail.com>2015-05-22 00:56:57 -0700
committerZhiming Wang <zmwangx@gmail.com>2015-05-22 01:01:09 -0700
commit81d3143b0d6ef146a19087bd248b20d0b9e4a55b (patch)
tree044490db5eefa36c3207b30f47c598a0d5206bdd /source/blog/2014-12-23-mpv-launcher.md
parente43c335933be92a61d196a4c562e09e9fc85c3f3 (diff)
downloadmy_new_personal_website-81d3143b0d6ef146a19087bd248b20d0b9e4a55b.tar.xz
my_new_personal_website-81d3143b0d6ef146a19087bd248b20d0b9e4a55b.zip
20150522 Using a command table as wallpaper
And other minor changes.
Diffstat (limited to 'source/blog/2014-12-23-mpv-launcher.md')
-rw-r--r--source/blog/2014-12-23-mpv-launcher.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blog/2014-12-23-mpv-launcher.md b/source/blog/2014-12-23-mpv-launcher.md
index c8c2aee2..b377aa1d 100644
--- a/source/blog/2014-12-23-mpv-launcher.md
+++ b/source/blog/2014-12-23-mpv-launcher.md
@@ -8,7 +8,7 @@ date-display: December 23, 2014
I just noticed that `daemonize` doesn't play too well with the OS; in particular, when you use dark menu bar on OS X Yosemite, apps launched with `daemonize` won't conform to that. So a native shell solution would be using `/bin/zsh` and run
```zsh
-mpv "$@" >/dev/null 2>&1 </dev/null &!
+mpv $@ &>/dev/null </dev/null &!
```
instead.