Only add dbus related calls for arch setups

This commit is contained in:
Sonny Bakker 2024-09-20 21:58:24 +02:00
parent 373dad8448
commit dc1285358e

View file

@ -15,6 +15,7 @@ vim.api.nvim_create_autocmd({'OptionSet'}, {
end
})
{% if ansible_facts['os_family'] == 'Archlinux' %}
--[[
Use `busctl --user tree` to show a tree of available services.
Use the `Introspect` option to inspect available options:
@ -89,3 +90,4 @@ local detect_scheme_change = function(channel_id, data, name)
end
vim.fn.jobstart(monitor_command, { on_stdout = detect_scheme_change } )
{% endif %}