mirror of
https://github.com/horst3180/arc-theme.git
synced 2024-10-27 19:04:02 +00:00
remove bashisms
This commit is contained in:
parent
f4659ecd01
commit
8f53d145fa
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
# Script to upgrade/install the arc-theme
|
||||
|
||||
@ -29,11 +29,11 @@ userdarkdir2=$HOME/local/share/themes/Arc-Dark
|
||||
|
||||
#Functions
|
||||
show_error() {
|
||||
echo -e "\033[1;31m$@\033[0m"
|
||||
printf "\033[1;31m$@\033[0m\n"
|
||||
}
|
||||
|
||||
check_root() {
|
||||
if [[ "${EUID}" -ne 0 ]]; then
|
||||
if [ "$(id -u)" -ne 0 ]; then
|
||||
show_error "This script has to be run as root"
|
||||
echo
|
||||
exec sudo "$0" "$@" # Instead of exit, just re-execute as root
|
||||
|
Loading…
Reference in New Issue
Block a user