mirror of
https://github.com/Rushilwiz/rice.git
synced 2025-04-09 14:50:17 -04:00
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
# Location
|
|
# +---------- +
|
|
# | 1 | 2 | 3 |
|
|
# | 8 | 0 | 4 |
|
|
# | 7 | 6 | 5 |
|
|
# +-----------+
|
|
#The grid represents the screen with the numbers indicating the location of the window.
|
|
#If you want the window to be in the upper right corner, set location to 3.
|
|
LOCATION=0
|
|
#This sets the anchor point for the window displaying the QR code.
|
|
QRCODE_LOCATION=$LOCATION
|
|
#X, Y Offset
|
|
#This sets the distance of the window from the edge of the screen on the X and Y axis.
|
|
Y_AXIS=0
|
|
X_AXIS=0
|
|
#Use notifications or not
|
|
#Values can be "true" or "false"
|
|
NOTIFICATIONS="true"
|
|
#Location of qrcode wifi image
|
|
QRCODE_DIR="/tmp/"
|
|
#WIDTH_FIX_MAIN/WIDTH_FIX_STATUS
|
|
#These values can be adjusted if the text doesn't fit or
|
|
#if there is too much space at the end when you launch the script.
|
|
#It will depend on the font type and size.
|
|
WIDTH_FIX_MAIN=1
|
|
WIDTH_FIX_STATUS=10
|
|
#Values can be "true" or "false"
|
|
#Set it to true, if the script outputs the signal strength with asterisks
|
|
#and you want bars.
|
|
ASCII_OUT=false
|
|
#Values can be "true" or "false"
|
|
#Set it to true if you want to use custom icons
|
|
#for the signal strength instead of the default ones.
|
|
CHANGE_BARS=false
|
|
#Custom signal strength indicators
|
|
SIGNAL_STRENGTH_0="0"
|
|
SIGNAL_STRENGTH_1="1"
|
|
SIGNAL_STRENGTH_2="12"
|
|
SIGNAL_STRENGTH_3="123"
|
|
SIGNAL_STRENGTH_4="1234"
|
|
|