Merge pull request #3327 from pi-hole/new/dark

Implement backend support for theming
pull/3353/head
DL6ER 4 years ago committed by GitHub
commit a1e913de7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -401,6 +401,10 @@ SetWebUILayout() {
change_setting "WEBUIBOXEDLAYOUT" "${args[2]}"
}
SetWebUITheme() {
change_setting "WEBTHEME" "${args[2]}"
}
CheckUrl(){
local regex
# Check for characters NOT allowed in URLs
@ -662,6 +666,7 @@ main() {
"enabledhcp" ) EnableDHCP;;
"disabledhcp" ) DisableDHCP;;
"layout" ) SetWebUILayout;;
"theme" ) SetWebUITheme;;
"-h" | "--help" ) helpFunc;;
"privacymode" ) SetPrivacyMode;;
"resolve" ) ResolutionSettings;;

Loading…
Cancel
Save