diff options
Diffstat (limited to '')
-rw-r--r-- | XMonad/Util/Run.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Util/Run.hs b/XMonad/Util/Run.hs index 6820cad..1d03ff4 100644 --- a/XMonad/Util/Run.hs +++ b/XMonad/Util/Run.hs @@ -101,7 +101,7 @@ of it can be, well, unsafe. Examples: > , ((modm, xK_Print), unsafeSpawn "import -window root $HOME/xwd-$(date +%s)$$.png") -> , ((modm, xK_d ), safeSpawn "firefox" "") +> , ((modm, xK_d ), safeSpawn "firefox" []) Note that the unsafeSpawn example must be unsafe and not safe because it makes use of shell interpretation by relying on @$HOME@ and |