[Linux] Add gnome-settings-daemon to path

This commit is contained in:
Ivan Malison 2016-09-19 16:47:32 -07:00
parent 6564c283cd
commit 7301fc24ec
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -11,7 +11,7 @@ function _setup_env {
add_to_path "/usr/local/sbin" "/usr/local/bin" "/usr/bin" --after
_ruby_setup
is_osx && _osx_path_setup
is_osx && _osx_path_setup || _linux_path_setup
_emacs_setup
_haskell_setup
_java_setup
@ -22,6 +22,10 @@ function _setup_env {
export ENVIRONMENT_SETUP_DONE="$(date)"
}
function _linux_path_setup {
add_to_path "/usr/lib/gnome-settings-daemon"
}
function _osx_path_setup {
if command_exists "brew";
then