diff options
Diffstat (limited to '')
-rw-r--r-- | data/autostart/meson.build | 12 | ||||
-rw-r--r-- | data/autostart/orca-autostart.desktop | 7 |
2 files changed, 19 insertions, 0 deletions
diff --git a/data/autostart/meson.build b/data/autostart/meson.build new file mode 100644 index 0000000..348a6c6 --- /dev/null +++ b/data/autostart/meson.build @@ -0,0 +1,12 @@ +autostart_files_conf = { + 'LIBEXECDIR': gdm_prefix / get_option('libexecdir'), +} + +foreach autostart_file : [ 'orca-autostart.desktop' ] + configure_file( + input: autostart_file, + output: autostart_file, + configuration: autostart_files_conf, + install_dir: get_option('datadir') / 'gdm' / 'greeter' / 'autostart', + ) +endforeach diff --git a/data/autostart/orca-autostart.desktop b/data/autostart/orca-autostart.desktop new file mode 100644 index 0000000..944cfd7 --- /dev/null +++ b/data/autostart/orca-autostart.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=Orca screen reader +Exec=orca --disable main-window,splash-window --enable speech,braille +NoDisplay=true +AutostartCondition=GSettings org.gnome.desktop.a11y.applications screen-reader-enabled +X-GNOME-AutoRestart=true |