Skip to content

Instantly share code, notes, and snippets.

View kurybr's full-sized avatar
:octocat:
Gryffindor Not

Jorge Rafael kurybr

:octocat:
Gryffindor Not
View GitHub Profile
@kurybr
kurybr / install_rhvoice.sh
Created February 6, 2023 01:24 — forked from alekssamos/install_rhvoice.sh
Script for auto install speech synt RHVoice for Gnome-Orca screen reader
#!/bin/bash
# https://www.shellhacks.com/ru/bash-test-if-file-exists/
# https://habr.com/ru/company/ruvds/blog/325928/
# http://qaru.site/questions/41427/how-to-check-if-a-file-contains-a-specific-string-using-bash
# http://blog.richim.org/2011/10/bash.html
# Check the script is being run by root
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root"