diff options
author | azahi <azahi@teknik.io> | 2018-08-16 17:12:34 +0300 |
---|---|---|
committer | azahi <azahi@teknik.io> | 2018-08-16 17:12:34 +0300 |
commit | a9ff90233d9376a466f0788117fe86ccf7596e59 (patch) | |
tree | ddafe38c5b6cfb1e26833d015de2c56e7068b423 /src/XMonad/Custom/Misc.hs | |
parent | Minor fixes and code refactoring (diff) |
Release 0.2.1.1
Diffstat (limited to '')
-rw-r--r-- | src/XMonad/Custom/Misc.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/XMonad/Custom/Misc.hs b/src/XMonad/Custom/Misc.hs index 78fc0f1..92ea877 100644 --- a/src/XMonad/Custom/Misc.hs +++ b/src/XMonad/Custom/Misc.hs @@ -27,9 +27,9 @@ data Applications = Applications customApplications :: Applications customApplications = Applications - { term = "/usr/bin/urxvtc" - , browser = "/usr/bin/qutebrowser" - , top = "/usr/bin/htop" - , mixer = "/usr/bin/alsamixer" - , notify = "/usr/bin/notify-send" + { term = "urxvtc" + , browser = "qutebrowser" + , top = "htop" + , mixer = "alsamixer" + , notify = "notify-send" } |