Move LED toggle to the second function button, and wifi to the combo. Fix missing text issue in the installer.
This commit is contained in:
parent
101071cd5b
commit
261f3c1351
2 changed files with 5 additions and 5 deletions
|
@ -134,22 +134,22 @@ fi
|
|||
|
||||
if [ -z "${FN_B_ACTION_UP}" ]
|
||||
then
|
||||
FN_B_ACTION_UP="wifictl enable"
|
||||
FN_B_ACTION_UP="ledcontrol"
|
||||
fi
|
||||
|
||||
if [ -z "${FN_B_ACTION_DOWN}" ]
|
||||
then
|
||||
FN_B_ACTION_DOWN="wifictl disable"
|
||||
FN_B_ACTION_DOWN="ledcontrol poweroff"
|
||||
fi
|
||||
|
||||
if [ -z "${FN_AB_ACTION_UP}" ]
|
||||
then
|
||||
FN_AB_ACTION_UP="ledcontrol"
|
||||
FN_AB_ACTION_UP="wifictl enable"
|
||||
fi
|
||||
|
||||
if [ -z "${FN_AB_ACTION_DOWN}" ]
|
||||
then
|
||||
FN_AB_ACTION_DOWN="ledcontrol poweroff"
|
||||
FN_AB_ACTION_DOWN="wifictl disable"
|
||||
fi
|
||||
|
||||
### Simple functions to execute button actions, including global kill.
|
||||
|
|
|
@ -396,7 +396,7 @@ EOF
|
|||
# install complete
|
||||
MSG_TITLE="@DISTRONAME@ Install Complete"
|
||||
MSG_DETAIL="You may now remove the install media and shutdown.\n"
|
||||
whiptail --backtitle "$BACKTITLE" --title "$MSG_TITLE" --msgbox "$MSG_DETAIL" 7 52
|
||||
whiptail --backtitle "$BACKTITLE" --title "$MSG_TITLE" --msgbox "$MSG_DETAIL" 7 73
|
||||
}
|
||||
|
||||
msg_no_device() {
|
||||
|
|
Loading…
Reference in a new issue