KASM-5466 add text rotation yaml config

This commit is contained in:
Matt McClaskey 2024-01-22 07:30:46 -05:00
parent 5456ccc072
commit 659a4198fc
No known key found for this signature in database
3 changed files with 25 additions and 0 deletions

View File

@ -50,6 +50,12 @@ data_loss_prevention:
# location: 10,10
# tint: 255,20,20,128
# repeat_spacing: 10
#text:
# template: "${USER} %H:%M"
# font: auto
# font_size: 48
# timezone_name: Australia/Adelaide
# rotation: 0
logging:
level: off

View File

@ -100,6 +100,7 @@ data_loss_prevention:
# font: auto
# font_size: 48
# timezone_name: Australia/Adelaide
# rotation: 0
logging:
# "verbose" SETTING LOGS YOUR PRIVATE INFORMATION. Keypresses and clipboard content
level: off

View File

@ -1862,6 +1862,24 @@ sub DefineConfigToCLIConversion {
$offset_in_seconds/60;
}
}),
KasmVNC::CliOption->new({
name => 'DLP_WatermarkTextAngle',
configKeys => [
KasmVNC::ConfigKey->new({
name => "data_loss_prevention.watermark.text.angle",
validator => KasmVNC::CallbackValidator->new({
isValidCallback => sub {
my $value = shift;
return 0 unless $value =~ /^\d+$/;
$value >= -359 && $value <= 359;
},
errorMessage => "must be in range -359..359"
}),
})
]
}),
KasmVNC::CliOption->new({
name => 'DLP_Log',
configKeys => [