mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
22 lines
228 B
Ruby
22 lines
228 B
Ruby
class OS
|
|
ICONS = {
|
|
"Darwin" => "",
|
|
"Linux" => "",
|
|
"FreeBSD" => "",
|
|
}
|
|
|
|
def os
|
|
"#{icon} #{name}"
|
|
end
|
|
|
|
private
|
|
|
|
def name
|
|
@os ||= `uname -s`.strip
|
|
end
|
|
|
|
def icon
|
|
ICONS[name]
|
|
end
|
|
end
|