1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Generic
class _Os(_Generic):
_type = "os"
_icon_dir = "resources/generic/os"
class Android(_Os):
_icon = "android.png"
class Centos(_Os):
_icon = "centos.png"
class Debian(_Os):
_icon = "debian.png"
class IOS(_Os):
_icon = "ios.png"
class LinuxGeneral(_Os):
_icon = "linux-general.png"
class Raspbian(_Os):
_icon = "raspbian.png"
class RedHat(_Os):
_icon = "red-hat.png"
class Suse(_Os):
_icon = "suse.png"
class Ubuntu(_Os):
_icon = "ubuntu.png"
class Windows(_Os):
_icon = "windows.png"
# Aliases
|