Class: Launchy::Detect::NixDesktopEnvironment
- Inherits:
-
Object
- Object
- Launchy::Detect::NixDesktopEnvironment
- Extended by:
- Launchy::DescendantTracker
- Defined in:
- lib/launchy/detect/nix_desktop_environment.rb
Overview
Detect the current desktop environment for *nix machines Currently this is Linux centric. The detection is based upon the detection used by xdg-open from portland.freedesktop.org/wiki/XdgUtils
Defined Under Namespace
Classes: Gnome, Kde, NotFoundError, Xfce
Class Method Summary collapse
-
.detect ⇒ Object
Detect the current *nix desktop environment.
- .fallback_browsers ⇒ Object
Methods included from Launchy::DescendantTracker
children, find_child, inherited
Class Method Details
.detect ⇒ Object
Detect the current *nix desktop environment
If the current dekstop environment be detected, the return NixDekstopEnvironment::Unknown
15 16 17 18 19 |
# File 'lib/launchy/detect/nix_desktop_environment.rb', line 15 def self.detect found = find_child( :is_current_desktop_environment? ) return found if found raise NotFoundError, "Current Desktop environment not found. #{Launchy.}" end |
.fallback_browsers ⇒ Object
21 22 23 |
# File 'lib/launchy/detect/nix_desktop_environment.rb', line 21 def self.fallback_browsers %w[ firefox seamonkey opera mozilla netscape galeon ] end |