X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Flive-bottom%2F30accessibility;h=d838d76898b54ef4acaeecaca4db60b29069fa31;hb=2c649cf1f86f2030a213b9b0bfc1d1a1f0c14b2c;hp=a1693427efc22e3cb7ec2f69e2f8807d916fa836;hpb=2910ae281a07441f55215ca74ec38f1d499420f2;p=live-boot-grml.git diff --git a/scripts/live-bottom/30accessibility b/scripts/live-bottom/30accessibility index a169342..d838d76 100755 --- a/scripts/live-bottom/30accessibility +++ b/scripts/live-bottom/30accessibility @@ -67,16 +67,20 @@ case ${ACCESS} in access=v2) # Moderate Visual Impairment gct -s -t bool /desktop/gnome/interface/accessibility true - gct -s -t bool /desktop/gnome/applications/at/visual/startup true gct -s -t bool /apps/gksu/disable-grab true + gct -s -t string /desktop/gnome/applications/window_manager/default /usr/bin/metacity - if type orca > /dev/null 2>&1 + if [ -x /root/usr/bin/orca ] then mkdir -p /root/home/${USERNAME}/.orca echo "import orca.settings" >> /root/home/${USERNAME}/.orca/user-settings.py echo "orca.settings.enableSpeech = False" >> /root/home/${USERNAME}/.orca/user-settings.py echo "orca.settings.enableMagnifier = True" >> /root/home/${USERNAME}/.orca/user-settings.py chroot /root chown -R ${USERNAME}:${USERNAME} /home/${USERNAME}/.orca + + mkdir -p /root/home/${USERNAME}/.config/autostart + cp /root/usr/share/applications/orca.desktop /root/home/${USERNAME}/.config/autostart + chroot /root chown -R ${USERNAME}.${USERNAME} /home/${USERNAME}/.config fi ;; @@ -85,25 +89,34 @@ case ${ACCESS} in # Disabled for now, until we know eSpeak works. #gct -s -t bool /desktop/gnome/sound/enable_esd false gct -s -t bool /desktop/gnome/interface/accessibility true - gct -s -t bool /desktop/gnome/applications/at/visual/startup true gct -s -t bool /apps/gksu/disable-grab true gct -s -t string /desktop/gnome/applications/window_manager/default /usr/bin/metacity + + if [ -x /root/usr/bin/orca ] + then + mkdir -p /root/home/${USERNAME}/.config/autostart + cp /root/usr/share/applications/orca.desktop /root/home/${USERNAME}/.config/autostart + chroot /root chown -R ${USERNAME}.${USERNAME} /home/${USERNAME}/.config + fi ;; braille=ask) # Braille gct -s -t bool /desktop/gnome/interface/accessibility true - gct -s -t bool /desktop/gnome/applications/at/visual/startup true gct -s -t bool /apps/gksu/disable-grab true gct -s -t string /desktop/gnome/applications/window_manager/default /usr/bin/metacity - if type orca > /dev/null 2>&1 + if [ -x /root/usr/bin/orca ] then mkdir -p /root/home/${USERNAME}/.orca echo "import orca.settings" >> /root/home/${USERNAME}/.orca/user-settings.py echo "orca.settings.enableSpeech = False" >> /root/home/${USERNAME}/.orca/user-settings.py echo "orca.settings.enableBraille = True" >> /root/home/${USERNAME}/.orca/user-settings.py chroot /root chown -R ${USERNAME}:${USERNAME} /home/${USERNAME}/.orca + + mkdir -p /root/home/${USERNAME}/.config/autostart + cp /root/usr/share/applications/orca.desktop /root/home/${USERNAME}/.config/autostart + chroot /root chown -R ${USERNAME}.${USERNAME} /home/${USERNAME}/.config fi ;;