minor tips quickshell

This commit is contained in:
fbsanchez 2019-10-29 15:55:39 +01:00
parent 06c7544041
commit 6478c7a51f
2 changed files with 11 additions and 4 deletions

View File

@ -391,7 +391,9 @@ function quickShellSettings()
],
'inputs' => [
[
'label' => __('Gotty path'),
'label' => __('Gotty path').ui_print_help_tip(
__('Leave blank if using an external Gotty service')
),
'arguments' => [
'type' => 'text',
'name' => 'gotty',
@ -423,7 +425,9 @@ function quickShellSettings()
],
],
[
'label' => __('Gotty user'),
'label' => __('Gotty user').ui_print_help_tip(
__('Optional, set a user to access gotty service')
),
'arguments' => [
'type' => 'text',
'name' => 'gotty_user',
@ -431,7 +435,9 @@ function quickShellSettings()
],
],
[
'label' => __('Gotty password'),
'label' => __('Gotty password').ui_print_help_tip(
__('Optional, set a password to access gotty service')
),
'arguments' => [
'type' => 'password',
'name' => 'gotty_pass',

View File

@ -138,7 +138,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
('cr_incident_type', ''),
('cr_incident_status', ''),
('cr_incident_title', ''),
('cr_incident_content', '');
('cr_incident_content', ''),
('gotty', '/usr/bin/gotty');
UNLOCK TABLES;
--