Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup_rules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", ATTRS{manu
SUBSYSTEMS=="usb", ATTRS{idVendor}=="303a", ATTRS{idProduct}=="40??", ATTRS{manufacturer}=="Flipper Devices Inc.", TAG+="uaccess"
'

alias warning_message='printf "You will now be asked for SUDO password.\n"'
warning_message="You will now be asked for SUDO password.\n"

rules_install() {
warning_message
printf "$warning_message"

# The danger zone
if \
Expand All @@ -32,7 +32,7 @@ rules_install() {

rules_uninstall() {
if [ -f "$RULES_FILE" ]; then
warning_message
printf "$warning_message"

# The danger zone
if
Expand Down