-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Hello,
Currently with the hosts option in the link task I can differentiate Linux and MacOS only if I enter specific hostname for each of my machines.
It would be a nice feature to keep the same system but to allow differentiation of the OS.
Here is an example:
"link": {
"~/.emacs": {
"os": {
"Darwin": "emacs.macos",
"Linux": "emacs.linux",
"-": "emacs.generic"
}
}
}It could be used to have different path depending on the operating system too:
"link": {
"~/Library/Application Support/Code/User/settings.json": {
"os": {
"Darwin": "settings.json"
}
},
"~/.config/Code/User/settings.json": {
"os": {
"Linux": "settings.json"
}
}
}Reactions are currently unavailable