diff options
author | David Runge <dave@sleepmap.de> | 2018-12-09 16:09:11 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2018-12-09 16:09:11 +0100 |
commit | 2b0fe3382e39c330c99333be34b8909175d69499 (patch) | |
tree | 3c943bf153e439c890c5752169c69986864b75e6 /bin | |
parent | a45198d9c3dd8699dc03c5e06970c0512ff67776 (diff) | |
download | dotfiles-2b0fe3382e39c330c99333be34b8909175d69499.tar.gz dotfiles-2b0fe3382e39c330c99333be34b8909175d69499.tar.bz2 dotfiles-2b0fe3382e39c330c99333be34b8909175d69499.tar.xz dotfiles-2b0fe3382e39c330c99333be34b8909175d69499.zip |
bin/realtime-suggestions: Switching to info level for detection of audio group.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/realtime-suggestions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/realtime-suggestions b/bin/realtime-suggestions index fa0c82e..c26055d 100755 --- a/bin/realtime-suggestions +++ b/bin/realtime-suggestions @@ -105,10 +105,10 @@ check_groups() { local groups="" groups=$(groups) if [[ "$groups" != *audio* ]]; then - echo "$change Add your user to the audio group. It's used for access to audio devices on most distros." + echo "$info Consider adding your user to the audio group. On some distributions it's used for elevated resource limits." fi if [[ "$groups" != *realtime* ]]; then - echo "$info Some distributions use the realtime group for elevated resource limits." + echo "$info Consider adding your user to the realtime group. On some distributions it's used for elevated resource limits." fi } |