tide/functions/_tide_detect_os.fish
2020-11-24 14:39:56 -08:00

58 lines
1.7 KiB
Fish

function _tide_detect_os
switch (uname | string lower)
case darwin
set -gx _tide_os_icon
case freebsd openbsd dragonfly
set -gx _tide_os_icon
case linux
if _tide_detect_os_linux_cases /etc/os-release ID
else if _tide_detect_os_linux_cases /etc/os-release ID_LIKE
else if _tide_detect_os_linux_cases /etc/lsb-release DISTRIB_ID
else
set -gx _tide_os_icon
end
case '*'
set -gx _tide_os_icon '?'
end
end
function _tide_detect_os_linux_cases -a file key
test -f $file || return
set -l splitOsRelease (cat $file | string split '=')
set -l value $splitOsRelease[(math (contains --index $key $splitOsRelease)+1)]
set -l name (string trim --chars='"' $value | string lower)
switch $name
case alpine
set -gx _tide_os_icon
case arch
set -gx _tide_os_icon
case centos
set -gx _tide_os_icon
case debian
set -gx _tide_os_icon
case elementary
set -gx _tide_os_icon
case fedora
set -gx _tide_os_icon
case gentoo
set -gx _tide_os_icon
case linuxmint
set -gx _tide_os_icon
case manjaro
set -gx _tide_os_icon
case nixos
set -gx _tide_os_icon
case opensuse tumbleweed
set -gx _tide_os_icon
case raspbian
set -gx _tide_os_icon
case ubuntu
set -gx _tide_os_icon
case '*'
return 1
end
return 0 # If we didn't run into the catch case '*' return succesfull
end