Merge branch 'patch-3' of git://github.com/mfc/qubes-doc into mfc-patch-3

This commit is contained in:
Andrew David Wong 2020-07-09 01:54:57 -05:00
commit 17ef21eafa
No known key found for this signature in database
GPG key ID: 8CE137352A019A17

View file

@ -85,29 +85,30 @@ Sample config (included in default installation):
~~~ ~~~
# Sample configuration file for Qubes GUI daemon # Sample configuration file for Qubes GUI daemon
# For syntax go http://www.hyperrealm.com/libconfig/libconfig_manual.html # For syntax go https://www.hyperrealm.com/libconfig/libconfig_manual.html
global: { global: {
# default values # default values
#allow_fullscreen = false; #allow_fullscreen = false;
#override_redirect_protection = true;
#allow_utf8_titles = false; #allow_utf8_titles = false;
#secure_copy_sequence = "Ctrl-Shift-c"; #secure_copy_sequence = "Ctrl-Shift-c";
#secure_paste_sequence = "Ctrl-Shift-v"; #secure_paste_sequence = "Ctrl-Shift-v";
#windows_count_limit = 500; #windows_count_limit = 500;
#audio_low_latency = false; #audio_low_latency = true;
#log_level = 1; #log_level = 1;
#trayicon_mode = "border1"; #trayicon_mode = "border1";
#startup_timeout = 91; #startup_timeout = 45;
}; };
# most of setting can be set per-VM basis # most of setting can be set per-VM basis
VM: { VM: {
work: { work: {
#allow_utf8_titles = true; allow_utf8_titles = true;
}; };
video-vm: { video-vm: {
#allow_fullscreen = true; allow_fullscreen = true;
}; };
}; };
~~~ ~~~