class Launchy::Detect::NixDesktopEnvironment::Xfce

def self.is_current_desktop_environment?

def self.is_current_desktop_environment?
  if Launchy::Application.find_executable("xprop")
    `xprop -root _DT_SAVE_MODE`.include?("xfce")
  else
    false
  end
end