2012-07-06 14:19:54 +02:00
|
|
|
-- Start idempotent commands
|
|
|
|
local execute = {
|
2012-08-16 21:06:08 +02:00
|
|
|
-- Default browser
|
2014-02-26 09:37:43 +01:00
|
|
|
"xdg-mime default " .. config.browser .. ".desktop " ..
|
|
|
|
"x-scheme-handler/http " ..
|
|
|
|
"x-scheme-handler/https " ..
|
|
|
|
"text/html",
|
2014-02-26 09:36:45 +01:00
|
|
|
-- Default MIME types
|
2018-10-10 13:19:43 +02:00
|
|
|
"xdg-mime default org.gnome.Evince.desktop application/pdf",
|
2015-08-31 20:28:15 +02:00
|
|
|
"xdg-mime default gpicview.desktop image/png image/x-apple-ios-png image/jpeg image/jpg image/gif"
|
2012-07-06 14:19:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
os.execute(table.concat(execute, ";"))
|