mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-25 21:52:23 +00:00
11 lines
288 B
Text
11 lines
288 B
Text
device = {
|
|
thinkix = function()
|
|
return SYSTEM.hostname == "thinkix"
|
|
end,
|
|
desktop = function()
|
|
return SYSTEM.hostname == "fedora.fritz.box"
|
|
end,
|
|
laptop = function()
|
|
return SYSTEM.hostname == "thinkix" or SYSTEM.hostname == "frissnix"
|
|
end,
|
|
}
|