Skip to content

Commit

Permalink
feat: Added bluetooth support
Browse files Browse the repository at this point in the history
  • Loading branch information
helmuthdu committed May 9, 2018
1 parent d744ca5 commit b40b709
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions lilo
Original file line number Diff line number Diff line change
Expand Up @@ -1440,6 +1440,18 @@ install_usb_modem(){
fi
}
#}}}
#BLUETOOTH {{{
install_bluetooth(){
print_title "BLUETOOTH - https://wiki.archlinux.org/index.php/Bluetooth"
print_info "Bluetooth is a standard for the short-range wireless interconnection of cellular phones, computers, and other electronic devices. In Linux, the canonical implementation of the Bluetooth protocol stack is BlueZ"
read_input_text "Install bluetooth support" $BLUETOOTH
if [[ $OPTION == y ]]; then
package_install "bluez bluez-utils"
system_ctl enable bluetooth.service
pause_function
fi
}
#}}}
#ACCESSORIES {{{
install_accessories_apps(){
while true
Expand Down Expand Up @@ -3025,6 +3037,7 @@ do
install_desktop_environment
install_nm_wicd
install_usb_modem
install_bluetooth
checklist[2]=1
;;
3)
Expand Down
12 changes: 6 additions & 6 deletions lilo.automode
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
#12) i3
#13) OpenBox
#14) Xmonad
DESKTOPENV=4
DESKTOPENV="4"
#KDE {{{
# 1) Choqok
# 2) Digikam
Expand Down Expand Up @@ -133,9 +133,9 @@
# 2) Wicd
# 3) ConnMan
# n) None
NETWORKMANAGER=1
#USB 3G MODEM SUPPORT
USBMODEM="y"
NETWORKMANAGER="1"
USBMODEM="y" #USB 3G MODEM SUPPORT
BLUETOOTH="y" #BLUETOOTH SUPPORT
#}}}
#ACCESSORIES {{{
# 1) Albert
Expand Down Expand Up @@ -175,7 +175,7 @@
#22) Regexxer
#23) Postman
#24) Gitkraken
DEVELOPMENT_OPTIONS="15"
DEVELOPMENT_OPTIONS="17"
#}}}
#OFFICE {{{
# 1) Abiword+Gnumeric|Calligra
Expand Down Expand Up @@ -357,7 +357,7 @@
# 2) LAPP - APACHE, POSTGRESQL & PHP
# 3) LEMP - NGINX, MariaDB & PHP
# 4) LEPP - NGINX, POSTGRESQL & PHP
WEBSERVER=4
WEBSERVER="4"
POSTGIS="n"
#}}}
#FONTS {{{
Expand Down

0 comments on commit b40b709

Please sign in to comment.