├── .lib ├── check-with-local.sh ├── fill-empty.sh ├── lib.sh ├── record-permissions.sh └── set-permissions.sh ├── 1.Base ├── custom │ ├── README.md │ ├── custom.sh │ ├── debian-core │ │ └── root │ │ │ └── TEST_FILE │ ├── dom0 │ │ └── home │ │ │ └── user │ │ │ └── TEST_FILE │ └── permissions ├── default │ ├── debian-core │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── Xsession.options │ │ │ ├── apt │ │ │ │ ├── apt.conf.d │ │ │ │ │ └── 100-liteqube │ │ │ │ ├── preferences.d │ │ │ │ │ └── priorities.pref │ │ │ │ ├── sources.list │ │ │ │ └── sources.list.d │ │ │ │ │ └── qubes-r4.list │ │ │ ├── dpkg │ │ │ │ └── dpkg.cfg │ │ │ ├── fstab │ │ │ ├── protect │ │ │ │ ├── checksum.core-keys │ │ │ │ │ └── home │ │ │ │ │ │ └── user │ │ │ │ │ │ └── .ssh │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── settings.debian-core │ │ │ │ ├── settings.debian-core1 │ │ │ │ ├── template.ALL │ │ │ │ │ ├── bind-dirs │ │ │ │ │ │ └── var │ │ │ │ │ │ │ └── spool │ │ │ │ │ │ │ └── cron │ │ │ │ │ │ │ └── crontabs │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── config │ │ │ │ │ │ ├── qubes-firewall-user-script │ │ │ │ │ │ ├── rc.local │ │ │ │ │ │ └── suspend-module-blacklist │ │ │ │ │ ├── home │ │ │ │ │ │ └── user │ │ │ │ │ │ │ ├── .bashrc │ │ │ │ │ │ │ ├── .cache │ │ │ │ │ │ │ ├── .config │ │ │ │ │ │ │ ├── autostart │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ ├── user-dirs.dirs │ │ │ │ │ │ │ └── user-dirs.locale │ │ │ │ │ │ │ ├── .local │ │ │ │ │ │ │ ├── .profile │ │ │ │ │ │ │ └── .xsession-errors │ │ │ │ │ ├── lost+found │ │ │ │ │ │ └── .gitignore │ │ │ │ │ └── usrlocal │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── template.core-dvm │ │ │ │ │ └── config │ │ │ │ │ │ └── rc.local │ │ │ │ ├── template.core-keys │ │ │ │ │ ├── config │ │ │ │ │ │ └── rc.local │ │ │ │ │ └── home │ │ │ │ │ │ └── user │ │ │ │ │ │ └── .ssh │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── template.core-xorg │ │ │ │ │ ├── config │ │ │ │ │ │ └── rc.local │ │ │ │ │ └── usrlocal │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── liteqube-shutdown-inactive │ │ │ │ ├── template.debian-core │ │ │ │ │ ├── config │ │ │ │ │ │ └── rc.local │ │ │ │ │ └── usrlocal │ │ │ │ │ │ ├── bin │ │ │ │ │ │ └── update-alternatives │ │ │ │ │ │ ├── etc │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── games │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── include │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── man │ │ │ │ │ │ ├── sbin │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── share │ │ │ │ │ │ ├── ca-certificates │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ └── .uuid │ │ │ │ │ │ ├── man │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── sgml │ │ │ │ │ │ │ ├── declaration │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ ├── dtd │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ └── stylesheet │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── declaration │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ └── schema │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ └── src │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── template.debian-core1 │ │ │ │ └── vm-boot-protect.sh │ │ │ ├── qubes-rpc │ │ │ │ ├── liteqube.SplitFile │ │ │ │ ├── liteqube.SplitPassword │ │ │ │ ├── liteqube.SplitPasswordChecksum │ │ │ │ ├── liteqube.SplitPasswordSave │ │ │ │ ├── liteqube.SplitSSH │ │ │ │ ├── liteqube.SplitXorg │ │ │ │ └── liteqube.Xterm │ │ │ ├── rc.local │ │ │ ├── resolv.conf │ │ │ └── sudoers.d │ │ │ │ └── liteqube │ │ ├── lib │ │ │ └── systemd │ │ │ │ └── system │ │ │ │ ├── liteqube-shutdown-inactive.service │ │ │ │ ├── liteqube-split-ssh.socket │ │ │ │ ├── liteqube-split-ssh@.service │ │ │ │ ├── liteqube-split-xorg.socket │ │ │ │ ├── liteqube-split-xorg@.service │ │ │ │ └── liteqube-vm-template.service │ │ ├── root │ │ │ ├── .aptitude │ │ │ │ └── config │ │ │ ├── .bash_profile │ │ │ ├── .bashrc │ │ │ ├── .cache │ │ │ ├── .local │ │ │ ├── .profile │ │ │ └── post-install.sh │ │ └── var │ │ │ └── log │ │ │ └── xen │ ├── dom0 │ │ └── etc │ │ │ └── qubes-rpc │ │ │ ├── liteqube.Error │ │ │ ├── liteqube.Message │ │ │ ├── liteqube.SplitPassword │ │ │ └── policy │ │ │ ├── liteqube.Error │ │ │ ├── liteqube.Message │ │ │ ├── liteqube.SplitFile │ │ │ ├── liteqube.SplitPassword │ │ │ ├── liteqube.SplitSSH │ │ │ └── liteqube.SplitXorg │ └── permissions ├── files │ └── lq-xterm ├── install.sh └── uninstall.sh ├── 2.Network ├── custom │ ├── README.md │ ├── custom.sh │ └── permissions ├── default.first │ ├── debian-core │ │ ├── etc │ │ │ ├── protect │ │ │ │ ├── template.core-net │ │ │ │ │ ├── config │ │ │ │ │ │ └── suspend-module-blacklist │ │ │ │ │ └── usrlocal │ │ │ │ │ │ └── bin │ │ │ │ │ │ ├── liteqube-wifi-monitor-signal │ │ │ │ │ │ └── liteqube-wifi-monitor-state │ │ │ │ ├── template.core-tor │ │ │ │ │ ├── config │ │ │ │ │ │ ├── qubes-bind-dirs.d │ │ │ │ │ │ │ └── 50_user.conf │ │ │ │ │ │ ├── qubes-firewall-user-script │ │ │ │ │ │ ├── rc.local │ │ │ │ │ │ └── tor │ │ │ │ │ │ │ └── var-lib │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ └── usrlocal │ │ │ │ │ │ └── bin │ │ │ │ │ │ └── liteqube-tor-monitor │ │ │ │ └── template.core-update │ │ │ │ │ ├── config │ │ │ │ │ └── rc.local │ │ │ │ │ └── usrlocal │ │ │ │ │ └── bin │ │ │ │ │ └── liteqube-shutdown-inactive │ │ │ └── qubes-rpc │ │ │ │ ├── liteqube.TorMonitor │ │ │ │ ├── liteqube.TorRestart │ │ │ │ ├── liteqube.TorSetAP │ │ │ │ ├── liteqube.WifiMonitor │ │ │ │ ├── liteqube.WifiRequestAP │ │ │ │ └── liteqube.WifiSetState │ │ ├── lib │ │ │ └── systemd │ │ │ │ └── system │ │ │ │ ├── liteqube-tor-monitor.service │ │ │ │ ├── liteqube-tor-shutdown.service │ │ │ │ ├── liteqube-wifi-monitor-signal.service │ │ │ │ └── liteqube-wifi-monitor-state.service │ │ └── var │ │ │ └── spool │ │ │ └── cron │ │ │ └── .gitignore │ ├── dom0 │ │ └── etc │ │ │ └── qubes-rpc │ │ │ ├── liteqube.SignalTor │ │ │ ├── liteqube.SignalWifi │ │ │ └── policy │ │ │ ├── liteqube.SignalTor │ │ │ ├── liteqube.SignalWifi │ │ │ ├── liteqube.TorSetAP │ │ │ └── liteqube.WifiRequestAP │ └── permissions ├── default.fw-linux │ ├── debian-core │ │ └── etc │ │ │ └── protect │ │ │ ├── template.fw-net │ │ │ └── config │ │ │ │ └── rc.local │ │ │ └── template.fw-tor │ │ │ └── config │ │ │ └── rc.local │ └── permissions ├── default.fw-mirage │ ├── dom0 │ │ └── var │ │ │ └── lib │ │ │ └── qubes │ │ │ └── vm-kernels │ │ │ └── mirage-firewall │ │ │ ├── initramfs │ │ │ ├── modules.img │ │ │ └── vmlinuz │ └── permissions ├── default.net-appvm │ ├── core-net │ │ └── rw │ │ │ └── bind-dirs │ │ │ └── var │ │ │ └── lib │ │ │ └── NetworkManager │ │ │ └── secret_key │ ├── debian-core │ │ └── etc │ │ │ └── protect │ │ │ ├── checksum.core-net │ │ │ └── bind-dirs │ │ │ │ └── var │ │ │ │ └── lib │ │ │ │ └── NetworkManager │ │ │ │ └── secret_key │ │ │ ├── template.core-net │ │ │ └── config │ │ │ │ ├── qubes-bind-dirs.d │ │ │ │ └── 50_user.conf │ │ │ │ └── rc.local │ │ │ └── whitelist.core-net │ │ │ └── bind-dirs │ │ │ ├── etc │ │ │ └── NetworkManager │ │ │ │ └── system-connections │ │ │ │ └── .any_file │ │ │ └── var │ │ │ └── lib │ │ │ └── NetworkManager │ │ │ └── .any_file │ └── permissions ├── default.net-dispvm │ ├── debian-core │ │ ├── etc │ │ │ └── protect │ │ │ │ ├── template.core-net │ │ │ │ ├── bind-dirs │ │ │ │ │ └── etc │ │ │ │ │ │ └── NetworkManager │ │ │ │ │ │ └── system-connections │ │ │ │ │ │ └── .gitignore │ │ │ │ └── config │ │ │ │ │ ├── qubes-bind-dirs.d │ │ │ │ │ └── 50_user.conf │ │ │ │ │ └── rc.local │ │ │ │ └── whitelist.core-net │ │ │ │ └── bind-dirs │ │ │ │ └── etc │ │ │ │ └── NetworkManager │ │ │ │ └── system-connections │ │ │ │ └── .any_file │ │ └── var │ │ │ └── lib │ │ │ └── NetworkManager │ │ │ └── secret_key │ └── permissions ├── default.torify │ ├── debian-core │ │ └── etc │ │ │ ├── apt │ │ │ └── sources.list │ │ │ ├── protect │ │ │ └── whitelist.core-tor │ │ │ │ ├── bind-dirs │ │ │ │ └── var │ │ │ │ │ └── lib │ │ │ │ │ └── tor │ │ │ │ │ ├── cached-certs │ │ │ │ │ ├── cached-descriptors │ │ │ │ │ ├── cached-descriptors.new │ │ │ │ │ ├── cached-microdesc-consensus │ │ │ │ │ ├── cached-microdescs │ │ │ │ │ ├── cached-microdescs.new │ │ │ │ │ ├── keys │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── lock │ │ │ │ │ ├── pt_state │ │ │ │ │ └── .gitignore │ │ │ │ │ └── state │ │ │ │ └── config │ │ │ │ └── tor │ │ │ │ ├── ap │ │ │ │ ├── tor-obfs4 │ │ │ │ └── var-lib │ │ │ │ └── .any_dir │ │ │ └── tor │ │ │ └── torrc │ ├── dom0 │ │ └── etc │ │ │ └── yum.repos.d │ │ │ └── qubes-dom0.repo │ └── permissions ├── files │ ├── AccessPoints-secure │ │ └── .gitignore │ ├── AccessPoints │ │ └── .gitignore │ ├── Firmware │ │ └── .gitignore │ ├── lq-connect │ └── lq-update ├── install.sh └── uninstall.sh ├── 3.USB ├── custom │ ├── README.md │ ├── custom.sh │ ├── debian-core │ │ └── etc │ │ │ └── usbguard │ │ │ └── rules.conf │ └── permissions ├── default │ ├── debian-core │ │ ├── etc │ │ │ ├── protect │ │ │ │ └── template.core-usb │ │ │ │ │ ├── config │ │ │ │ │ └── rc.local │ │ │ │ │ └── usrlocal │ │ │ │ │ └── bin │ │ │ │ │ └── liteqube-amount │ │ │ ├── qubes-rpc │ │ │ │ └── liteqube.StorageConfig │ │ │ ├── udev │ │ │ │ └── rules.d │ │ │ │ │ └── 99-liteqube-amount.rules │ │ │ └── usbguard │ │ │ │ ├── rules.conf │ │ │ │ └── usbguard-daemon.conf │ │ └── lib │ │ │ └── systemd │ │ │ └── system │ │ │ └── liteqube-amount@.service │ ├── dom0 │ │ └── etc │ │ │ └── qubes-rpc │ │ │ ├── liteqube.SignalStorage │ │ │ └── policy │ │ │ ├── liteqube.SignalStorage │ │ │ ├── qubes.InputKeyboard │ │ │ ├── qubes.InputMouse │ │ │ └── qubes.InputTablet │ └── permissions ├── install.sh └── uninstall.sh ├── 4.VPN ├── custom │ ├── custom.sh │ └── permissions ├── default.ovpn │ └── permissions ├── default.ssh │ ├── debian-core │ │ └── etc │ │ │ ├── dnscrypt-proxy │ │ │ └── dnscrypt-proxy.toml │ │ │ ├── protect │ │ │ └── template.core-vpn │ │ │ │ └── home │ │ │ │ └── user │ │ │ │ └── .ssh │ │ │ │ └── .gitignore │ │ │ └── redsocks.conf │ └── permissions ├── default │ ├── debian-core │ │ ├── etc │ │ │ └── protect │ │ │ │ └── template.core-vpn │ │ │ │ ├── config │ │ │ │ └── rc.local │ │ │ │ └── usrlocal │ │ │ │ └── bin │ │ │ │ └── liteqube-vpn │ │ └── lib │ │ │ └── systemd │ │ │ └── system │ │ │ └── liteqube-vpn@.service │ ├── dom0 │ │ └── etc │ │ │ └── qubes-rpc │ │ │ └── liteqube.SignalVPN │ └── permissions ├── dom0-scripts │ ├── lq-addkey │ └── lq-vpn ├── files.ovpn │ └── server.zip ├── files.ssh │ ├── id_rsa │ ├── id_rsa.pub │ └── known_hosts ├── install.sh ├── settings-installer.sh ├── settings-qube.sh └── uninstall.sh ├── 5.Storage ├── custom │ ├── custom.sh │ └── permissions ├── default.iscsi │ ├── debian-core │ │ ├── etc │ │ │ └── protect │ │ │ │ └── template.core-iscsi │ │ │ │ ├── config │ │ │ │ └── rc.local │ │ │ │ └── usrlocal │ │ │ │ └── bin │ │ │ │ └── liteqube-amount │ │ └── lib │ │ │ └── systemd │ │ │ └── system │ │ │ └── liteqube-at-shutdown.service │ └── permissions ├── default │ ├── debian-core │ │ └── etc │ │ │ └── protect │ │ │ └── template.core-decrypt │ │ │ ├── config │ │ │ └── rc.local │ │ │ └── usrlocal │ │ │ └── bin │ │ │ └── liteqube-amount │ └── permissions ├── files │ ├── lq-storage │ └── open-iscsi │ │ └── .gitignore ├── install.sh └── uninstall.sh ├── 6.RDP ├── custom │ ├── custom.sh │ └── permissions ├── default │ ├── debian-core │ │ └── etc │ │ │ ├── protect │ │ │ └── template.core-rdp │ │ │ │ ├── config │ │ │ │ └── rc.local │ │ │ │ ├── home │ │ │ │ └── user │ │ │ │ │ ├── .ssh │ │ │ │ │ └── .gitignore │ │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ │ └── usrlocal │ │ │ │ └── bin │ │ │ │ └── liteqube-shutdown-inactive │ │ │ └── qubes-rpc │ │ │ └── liteqube.RDP │ └── permissions ├── files │ └── lq-remote ├── install.sh └── uninstall.sh ├── 7.Audio ├── custom │ ├── custom.sh │ ├── debian-core │ │ └── etc │ │ │ └── protect │ │ │ └── template.core-sound │ │ │ └── config │ │ │ └── rc.local │ └── permissions ├── default │ ├── debian-core │ │ ├── etc │ │ │ ├── modprobe.d │ │ │ │ └── liteqube-sound.conf │ │ │ ├── protect │ │ │ │ └── template.core-sound │ │ │ │ │ ├── config │ │ │ │ │ └── rc.local │ │ │ │ │ └── usrlocal │ │ │ │ │ └── bin │ │ │ │ │ ├── liteqube-pulseaudio-daemon │ │ │ │ │ └── liteqube-pulseaudio-monitor │ │ │ └── qubes-rpc │ │ │ │ └── liteqube.SoundVolume │ │ └── lib │ │ │ └── systemd │ │ │ └── system │ │ │ ├── liteqube-pulseaudio-daemon.service │ │ │ ├── liteqube-pulseaudio-hardware.service │ │ │ └── liteqube-pulseaudio-monitor.service │ ├── dom0 │ │ └── etc │ │ │ └── qubes-rpc │ │ │ └── liteqube.SignalSound │ └── permissions ├── files │ ├── lq-mic │ └── lq-volume ├── install.sh ├── settings-installer.sh ├── settings-qube.sh └── uninstall.sh ├── 8.Print ├── custom │ ├── custom.sh │ └── permissions ├── default │ ├── debian-core │ │ ├── etc │ │ │ └── protect │ │ │ │ └── template.core-print │ │ │ │ ├── bind-dirs │ │ │ │ └── var │ │ │ │ │ ├── cache │ │ │ │ │ └── cups │ │ │ │ │ │ └── .gitignore │ │ │ │ │ └── spool │ │ │ │ │ └── cups │ │ │ │ │ └── .gitignore │ │ │ │ ├── config │ │ │ │ ├── qubes-bind-dirs.d │ │ │ │ │ └── 50_user.conf │ │ │ │ └── rc.local │ │ │ │ ├── home │ │ │ │ └── user │ │ │ │ │ ├── QubesIncoming │ │ │ │ │ └── .gitignore │ │ │ │ │ └── lq-printers │ │ │ │ └── usrlocal │ │ │ │ └── bin │ │ │ │ └── liteqube-print-monitor │ │ └── lib │ │ │ └── systemd │ │ │ └── system │ │ │ └── liteqube-print-monitor.service │ ├── dom0 │ │ └── etc │ │ │ └── qubes-rpc │ │ │ └── policy │ │ │ └── liteqube.PrintFile │ └── permissions ├── files │ ├── liteqube-print │ ├── lq-printers │ └── ppd │ │ └── .gitignore ├── install.sh └── uninstall.sh ├── 9.Mail ├── custom │ ├── custom.sh │ ├── dom0 │ │ └── etc │ │ │ └── qubes-rpc │ │ │ └── liteqube.SignalMail │ └── permissions ├── default │ ├── core-getmail │ │ └── home │ │ │ └── user │ │ │ └── getmail │ │ │ └── .gitignore │ ├── debian-core │ │ └── etc │ │ │ ├── protect │ │ │ ├── template.core-getmail │ │ │ │ └── config │ │ │ │ │ └── rc.local │ │ │ ├── template.core-sendmail │ │ │ │ ├── config │ │ │ │ │ └── rc.local │ │ │ │ └── home │ │ │ │ │ └── user │ │ │ │ │ └── .msmtprc │ │ │ └── whitelist.core-getmail │ │ │ │ └── home │ │ │ │ └── user │ │ │ │ └── getmail │ │ │ │ └── .any_dir │ │ │ └── qubes-rpc │ │ │ ├── liteqube.MailCount │ │ │ ├── liteqube.MailRead │ │ │ ├── liteqube.MailReceive │ │ │ └── liteqube.MailSend │ ├── dom0 │ │ └── etc │ │ │ └── qubes-rpc │ │ │ └── liteqube.SignalMail │ └── permissions ├── dom0-scripts │ ├── liteqube-checkmail.service │ ├── lq-addkey │ └── lq-mail ├── install.sh ├── mail-scripts │ └── lq-mailer ├── settings-installer.sh └── uninstall.sh └── README.md /.lib/check-with-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/.lib/check-with-local.sh -------------------------------------------------------------------------------- /.lib/fill-empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/.lib/fill-empty.sh -------------------------------------------------------------------------------- /.lib/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/.lib/lib.sh -------------------------------------------------------------------------------- /.lib/record-permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/.lib/record-permissions.sh -------------------------------------------------------------------------------- /.lib/set-permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/.lib/set-permissions.sh -------------------------------------------------------------------------------- /1.Base/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/custom/README.md -------------------------------------------------------------------------------- /1.Base/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/custom/custom.sh -------------------------------------------------------------------------------- /1.Base/custom/debian-core/root/TEST_FILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/custom/debian-core/root/TEST_FILE -------------------------------------------------------------------------------- /1.Base/custom/dom0/home/user/TEST_FILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/custom/dom0/home/user/TEST_FILE -------------------------------------------------------------------------------- /1.Base/custom/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/custom/permissions -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/X11/Xsession.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/X11/Xsession.options -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/apt/apt.conf.d/100-liteqube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/apt/apt.conf.d/100-liteqube -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/apt/preferences.d/priorities.pref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/apt/preferences.d/priorities.pref -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/apt/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/apt/sources.list -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/apt/sources.list.d/qubes-r4.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/apt/sources.list.d/qubes-r4.list -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/dpkg/dpkg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/dpkg/dpkg.cfg -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/fstab -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/checksum.core-keys/home/user/.ssh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/checksum.core-keys/home/user/.ssh/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/settings.debian-core: -------------------------------------------------------------------------------- 1 | # Prevent self-destruction 2 | OBSCURE="No" 3 | -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/settings.debian-core1: -------------------------------------------------------------------------------- 1 | settings.debian-core -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/bind-dirs/var/spool/cron/crontabs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.ALL/bind-dirs/var/spool/cron/crontabs/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/config/qubes-firewall-user-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/config/rc.local: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/config/suspend-module-blacklist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/home/user/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.ALL/home/user/.bashrc -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/home/user/.cache: -------------------------------------------------------------------------------- 1 | /tmp -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/home/user/.config/autostart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.ALL/home/user/.config/autostart/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/home/user/.config/user-dirs.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.ALL/home/user/.config/user-dirs.dirs -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/home/user/.config/user-dirs.locale: -------------------------------------------------------------------------------- 1 | en_US.UTF8 -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/home/user/.local: -------------------------------------------------------------------------------- 1 | /tmp -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/home/user/.profile: -------------------------------------------------------------------------------- 1 | if [ "$BASH" ]; then 2 | . ~/.bashrc 3 | fi 4 | 5 | -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/home/user/.xsession-errors: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/lost+found/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.ALL/lost+found/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.ALL/usrlocal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.ALL/usrlocal/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.core-dvm/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.core-dvm/config/rc.local -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.core-keys/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.core-keys/config/rc.local -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.core-keys/home/user/.ssh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.core-keys/home/user/.ssh/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.core-xorg/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.core-xorg/config/rc.local -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.core-xorg/usrlocal/bin/liteqube-shutdown-inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.core-xorg/usrlocal/bin/liteqube-shutdown-inactive -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/config/rc.local -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/bin/update-alternatives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/bin/update-alternatives -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/etc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/etc/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/games/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/games/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/include/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/lib/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/man: -------------------------------------------------------------------------------- 1 | share/man -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/sbin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/sbin/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/ca-certificates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/ca-certificates/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/fonts/.uuid: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/man/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/declaration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/declaration/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/dtd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/dtd/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/entities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/entities/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/misc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/misc/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/stylesheet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/sgml/stylesheet/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/xml/declaration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/xml/declaration/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/xml/entities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/xml/entities/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/xml/misc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/xml/misc/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/xml/schema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/share/xml/schema/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/template.debian-core/usrlocal/src/.gitignore -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/template.debian-core1: -------------------------------------------------------------------------------- 1 | template.debian-core -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/protect/vm-boot-protect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/protect/vm-boot-protect.sh -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitFile -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitPassword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitPassword -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitPasswordChecksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitPasswordChecksum -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitPasswordSave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitPasswordSave -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitSSH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitSSH -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitXorg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/qubes-rpc/liteqube.SplitXorg -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/qubes-rpc/liteqube.Xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/qubes-rpc/liteqube.Xterm -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/rc.local -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/resolv.conf -------------------------------------------------------------------------------- /1.Base/default/debian-core/etc/sudoers.d/liteqube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/etc/sudoers.d/liteqube -------------------------------------------------------------------------------- /1.Base/default/debian-core/lib/systemd/system/liteqube-shutdown-inactive.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/lib/systemd/system/liteqube-shutdown-inactive.service -------------------------------------------------------------------------------- /1.Base/default/debian-core/lib/systemd/system/liteqube-split-ssh.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/lib/systemd/system/liteqube-split-ssh.socket -------------------------------------------------------------------------------- /1.Base/default/debian-core/lib/systemd/system/liteqube-split-ssh@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/lib/systemd/system/liteqube-split-ssh@.service -------------------------------------------------------------------------------- /1.Base/default/debian-core/lib/systemd/system/liteqube-split-xorg.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/lib/systemd/system/liteqube-split-xorg.socket -------------------------------------------------------------------------------- /1.Base/default/debian-core/lib/systemd/system/liteqube-split-xorg@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/lib/systemd/system/liteqube-split-xorg@.service -------------------------------------------------------------------------------- /1.Base/default/debian-core/lib/systemd/system/liteqube-vm-template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/lib/systemd/system/liteqube-vm-template.service -------------------------------------------------------------------------------- /1.Base/default/debian-core/root/.aptitude/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/root/.aptitude/config -------------------------------------------------------------------------------- /1.Base/default/debian-core/root/.bash_profile: -------------------------------------------------------------------------------- 1 | .bashrc -------------------------------------------------------------------------------- /1.Base/default/debian-core/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/root/.bashrc -------------------------------------------------------------------------------- /1.Base/default/debian-core/root/.cache: -------------------------------------------------------------------------------- 1 | /tmp -------------------------------------------------------------------------------- /1.Base/default/debian-core/root/.local: -------------------------------------------------------------------------------- 1 | /tmp -------------------------------------------------------------------------------- /1.Base/default/debian-core/root/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/root/.profile -------------------------------------------------------------------------------- /1.Base/default/debian-core/root/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/debian-core/root/post-install.sh -------------------------------------------------------------------------------- /1.Base/default/debian-core/var/log/xen: -------------------------------------------------------------------------------- 1 | /tmp -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/liteqube.Error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/dom0/etc/qubes-rpc/liteqube.Error -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/liteqube.Message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/dom0/etc/qubes-rpc/liteqube.Message -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/liteqube.SplitPassword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/dom0/etc/qubes-rpc/liteqube.SplitPassword -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/policy/liteqube.Error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/policy/liteqube.Message: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/policy/liteqube.SplitFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/policy/liteqube.SplitPassword: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/policy/liteqube.SplitSSH: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.Base/default/dom0/etc/qubes-rpc/policy/liteqube.SplitXorg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.Base/default/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/default/permissions -------------------------------------------------------------------------------- /1.Base/files/lq-xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/files/lq-xterm -------------------------------------------------------------------------------- /1.Base/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/install.sh -------------------------------------------------------------------------------- /1.Base/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/1.Base/uninstall.sh -------------------------------------------------------------------------------- /2.Network/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/custom/README.md -------------------------------------------------------------------------------- /2.Network/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/custom/custom.sh -------------------------------------------------------------------------------- /2.Network/custom/permissions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-net/config/suspend-module-blacklist: -------------------------------------------------------------------------------- 1 | iwlmvm 2 | iwlwifi 3 | -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-net/usrlocal/bin/liteqube-wifi-monitor-signal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/protect/template.core-net/usrlocal/bin/liteqube-wifi-monitor-signal -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-net/usrlocal/bin/liteqube-wifi-monitor-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/protect/template.core-net/usrlocal/bin/liteqube-wifi-monitor-state -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-tor/config/qubes-bind-dirs.d/50_user.conf: -------------------------------------------------------------------------------- 1 | binds+=( '/var/lib/tor' ) 2 | -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-tor/config/qubes-firewall-user-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/protect/template.core-tor/config/qubes-firewall-user-script -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-tor/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/protect/template.core-tor/config/rc.local -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-tor/config/tor/var-lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/protect/template.core-tor/config/tor/var-lib/.gitignore -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-tor/usrlocal/bin/liteqube-tor-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/protect/template.core-tor/usrlocal/bin/liteqube-tor-monitor -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-update/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/protect/template.core-update/config/rc.local -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/protect/template.core-update/usrlocal/bin/liteqube-shutdown-inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/protect/template.core-update/usrlocal/bin/liteqube-shutdown-inactive -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.TorMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.TorMonitor -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.TorRestart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.TorRestart -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.TorSetAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.TorSetAP -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.WifiMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.WifiMonitor -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.WifiRequestAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.WifiRequestAP -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.WifiSetState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/etc/qubes-rpc/liteqube.WifiSetState -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/lib/systemd/system/liteqube-tor-monitor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/lib/systemd/system/liteqube-tor-monitor.service -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/lib/systemd/system/liteqube-tor-shutdown.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/lib/systemd/system/liteqube-tor-shutdown.service -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/lib/systemd/system/liteqube-wifi-monitor-signal.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/lib/systemd/system/liteqube-wifi-monitor-signal.service -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/lib/systemd/system/liteqube-wifi-monitor-state.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/lib/systemd/system/liteqube-wifi-monitor-state.service -------------------------------------------------------------------------------- /2.Network/default.first/debian-core/var/spool/cron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/debian-core/var/spool/cron/.gitignore -------------------------------------------------------------------------------- /2.Network/default.first/dom0/etc/qubes-rpc/liteqube.SignalTor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/dom0/etc/qubes-rpc/liteqube.SignalTor -------------------------------------------------------------------------------- /2.Network/default.first/dom0/etc/qubes-rpc/liteqube.SignalWifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/dom0/etc/qubes-rpc/liteqube.SignalWifi -------------------------------------------------------------------------------- /2.Network/default.first/dom0/etc/qubes-rpc/policy/liteqube.SignalTor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.first/dom0/etc/qubes-rpc/policy/liteqube.SignalWifi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.first/dom0/etc/qubes-rpc/policy/liteqube.TorSetAP: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.first/dom0/etc/qubes-rpc/policy/liteqube.WifiRequestAP: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.first/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.first/permissions -------------------------------------------------------------------------------- /2.Network/default.fw-linux/debian-core/etc/protect/template.fw-net/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.fw-linux/debian-core/etc/protect/template.fw-net/config/rc.local -------------------------------------------------------------------------------- /2.Network/default.fw-linux/debian-core/etc/protect/template.fw-tor/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.fw-linux/debian-core/etc/protect/template.fw-tor/config/rc.local -------------------------------------------------------------------------------- /2.Network/default.fw-linux/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.fw-linux/permissions -------------------------------------------------------------------------------- /2.Network/default.fw-mirage/dom0/var/lib/qubes/vm-kernels/mirage-firewall/initramfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.fw-mirage/dom0/var/lib/qubes/vm-kernels/mirage-firewall/initramfs -------------------------------------------------------------------------------- /2.Network/default.fw-mirage/dom0/var/lib/qubes/vm-kernels/mirage-firewall/modules.img: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.fw-mirage/dom0/var/lib/qubes/vm-kernels/mirage-firewall/vmlinuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.fw-mirage/dom0/var/lib/qubes/vm-kernels/mirage-firewall/vmlinuz -------------------------------------------------------------------------------- /2.Network/default.fw-mirage/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.fw-mirage/permissions -------------------------------------------------------------------------------- /2.Network/default.net-appvm/core-net/rw/bind-dirs/var/lib/NetworkManager/secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.net-appvm/core-net/rw/bind-dirs/var/lib/NetworkManager/secret_key -------------------------------------------------------------------------------- /2.Network/default.net-appvm/debian-core/etc/protect/checksum.core-net/bind-dirs/var/lib/NetworkManager/secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.net-appvm/debian-core/etc/protect/checksum.core-net/bind-dirs/var/lib/NetworkManager/secret_key -------------------------------------------------------------------------------- /2.Network/default.net-appvm/debian-core/etc/protect/template.core-net/config/qubes-bind-dirs.d/50_user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.net-appvm/debian-core/etc/protect/template.core-net/config/qubes-bind-dirs.d/50_user.conf -------------------------------------------------------------------------------- /2.Network/default.net-appvm/debian-core/etc/protect/template.core-net/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.net-appvm/debian-core/etc/protect/template.core-net/config/rc.local -------------------------------------------------------------------------------- /2.Network/default.net-appvm/debian-core/etc/protect/whitelist.core-net/bind-dirs/etc/NetworkManager/system-connections/.any_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.net-appvm/debian-core/etc/protect/whitelist.core-net/bind-dirs/var/lib/NetworkManager/.any_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.net-appvm/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.net-appvm/permissions -------------------------------------------------------------------------------- /2.Network/default.net-dispvm/debian-core/etc/protect/template.core-net/bind-dirs/etc/NetworkManager/system-connections/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.net-dispvm/debian-core/etc/protect/template.core-net/bind-dirs/etc/NetworkManager/system-connections/.gitignore -------------------------------------------------------------------------------- /2.Network/default.net-dispvm/debian-core/etc/protect/template.core-net/config/qubes-bind-dirs.d/50_user.conf: -------------------------------------------------------------------------------- 1 | binds+=( '/etc/NetworkManager/system-connections' ) 2 | -------------------------------------------------------------------------------- /2.Network/default.net-dispvm/debian-core/etc/protect/template.core-net/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.net-dispvm/debian-core/etc/protect/template.core-net/config/rc.local -------------------------------------------------------------------------------- /2.Network/default.net-dispvm/debian-core/etc/protect/whitelist.core-net/bind-dirs/etc/NetworkManager/system-connections/.any_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.net-dispvm/debian-core/var/lib/NetworkManager/secret_key: -------------------------------------------------------------------------------- 1 | /run/liteqube/secret_key -------------------------------------------------------------------------------- /2.Network/default.net-dispvm/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.net-dispvm/permissions -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/apt/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.torify/debian-core/etc/apt/sources.list -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/cached-certs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/cached-descriptors: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/cached-descriptors.new: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/cached-microdesc-consensus: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/cached-microdescs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/cached-microdescs.new: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/keys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/keys/.gitignore -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/pt_state/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/pt_state/.gitignore -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/bind-dirs/var/lib/tor/state: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/config/tor/ap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/config/tor/tor-obfs4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/protect/whitelist.core-tor/config/tor/var-lib/.any_dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.Network/default.torify/debian-core/etc/tor/torrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.torify/debian-core/etc/tor/torrc -------------------------------------------------------------------------------- /2.Network/default.torify/dom0/etc/yum.repos.d/qubes-dom0.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.torify/dom0/etc/yum.repos.d/qubes-dom0.repo -------------------------------------------------------------------------------- /2.Network/default.torify/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/default.torify/permissions -------------------------------------------------------------------------------- /2.Network/files/AccessPoints-secure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/files/AccessPoints-secure/.gitignore -------------------------------------------------------------------------------- /2.Network/files/AccessPoints/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/files/AccessPoints/.gitignore -------------------------------------------------------------------------------- /2.Network/files/Firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/files/Firmware/.gitignore -------------------------------------------------------------------------------- /2.Network/files/lq-connect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/files/lq-connect -------------------------------------------------------------------------------- /2.Network/files/lq-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/files/lq-update -------------------------------------------------------------------------------- /2.Network/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/install.sh -------------------------------------------------------------------------------- /2.Network/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/2.Network/uninstall.sh -------------------------------------------------------------------------------- /3.USB/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/custom/README.md -------------------------------------------------------------------------------- /3.USB/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/custom/custom.sh -------------------------------------------------------------------------------- /3.USB/custom/debian-core/etc/usbguard/rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/custom/debian-core/etc/usbguard/rules.conf -------------------------------------------------------------------------------- /3.USB/custom/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/custom/permissions -------------------------------------------------------------------------------- /3.USB/default/debian-core/etc/protect/template.core-usb/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/debian-core/etc/protect/template.core-usb/config/rc.local -------------------------------------------------------------------------------- /3.USB/default/debian-core/etc/protect/template.core-usb/usrlocal/bin/liteqube-amount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/debian-core/etc/protect/template.core-usb/usrlocal/bin/liteqube-amount -------------------------------------------------------------------------------- /3.USB/default/debian-core/etc/qubes-rpc/liteqube.StorageConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/debian-core/etc/qubes-rpc/liteqube.StorageConfig -------------------------------------------------------------------------------- /3.USB/default/debian-core/etc/udev/rules.d/99-liteqube-amount.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/debian-core/etc/udev/rules.d/99-liteqube-amount.rules -------------------------------------------------------------------------------- /3.USB/default/debian-core/etc/usbguard/rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/debian-core/etc/usbguard/rules.conf -------------------------------------------------------------------------------- /3.USB/default/debian-core/etc/usbguard/usbguard-daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/debian-core/etc/usbguard/usbguard-daemon.conf -------------------------------------------------------------------------------- /3.USB/default/debian-core/lib/systemd/system/liteqube-amount@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/debian-core/lib/systemd/system/liteqube-amount@.service -------------------------------------------------------------------------------- /3.USB/default/dom0/etc/qubes-rpc/liteqube.SignalStorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/dom0/etc/qubes-rpc/liteqube.SignalStorage -------------------------------------------------------------------------------- /3.USB/default/dom0/etc/qubes-rpc/policy/liteqube.SignalStorage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.USB/default/dom0/etc/qubes-rpc/policy/qubes.InputKeyboard: -------------------------------------------------------------------------------- 1 | core-usb dom0 allow 2 | -------------------------------------------------------------------------------- /3.USB/default/dom0/etc/qubes-rpc/policy/qubes.InputMouse: -------------------------------------------------------------------------------- 1 | core-usb dom0 allow 2 | -------------------------------------------------------------------------------- /3.USB/default/dom0/etc/qubes-rpc/policy/qubes.InputTablet: -------------------------------------------------------------------------------- 1 | core-usb dom0 allow 2 | -------------------------------------------------------------------------------- /3.USB/default/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/default/permissions -------------------------------------------------------------------------------- /3.USB/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/install.sh -------------------------------------------------------------------------------- /3.USB/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/3.USB/uninstall.sh -------------------------------------------------------------------------------- /4.VPN/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/custom/custom.sh -------------------------------------------------------------------------------- /4.VPN/custom/permissions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4.VPN/default.ovpn/permissions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4.VPN/default.ssh/debian-core/etc/dnscrypt-proxy/dnscrypt-proxy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default.ssh/debian-core/etc/dnscrypt-proxy/dnscrypt-proxy.toml -------------------------------------------------------------------------------- /4.VPN/default.ssh/debian-core/etc/protect/template.core-vpn/home/user/.ssh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default.ssh/debian-core/etc/protect/template.core-vpn/home/user/.ssh/.gitignore -------------------------------------------------------------------------------- /4.VPN/default.ssh/debian-core/etc/redsocks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default.ssh/debian-core/etc/redsocks.conf -------------------------------------------------------------------------------- /4.VPN/default.ssh/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default.ssh/permissions -------------------------------------------------------------------------------- /4.VPN/default/debian-core/etc/protect/template.core-vpn/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default/debian-core/etc/protect/template.core-vpn/config/rc.local -------------------------------------------------------------------------------- /4.VPN/default/debian-core/etc/protect/template.core-vpn/usrlocal/bin/liteqube-vpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default/debian-core/etc/protect/template.core-vpn/usrlocal/bin/liteqube-vpn -------------------------------------------------------------------------------- /4.VPN/default/debian-core/lib/systemd/system/liteqube-vpn@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default/debian-core/lib/systemd/system/liteqube-vpn@.service -------------------------------------------------------------------------------- /4.VPN/default/dom0/etc/qubes-rpc/liteqube.SignalVPN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default/dom0/etc/qubes-rpc/liteqube.SignalVPN -------------------------------------------------------------------------------- /4.VPN/default/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/default/permissions -------------------------------------------------------------------------------- /4.VPN/dom0-scripts/lq-addkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/dom0-scripts/lq-addkey -------------------------------------------------------------------------------- /4.VPN/dom0-scripts/lq-vpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/dom0-scripts/lq-vpn -------------------------------------------------------------------------------- /4.VPN/files.ovpn/server.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/files.ovpn/server.zip -------------------------------------------------------------------------------- /4.VPN/files.ssh/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/files.ssh/id_rsa -------------------------------------------------------------------------------- /4.VPN/files.ssh/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/files.ssh/id_rsa.pub -------------------------------------------------------------------------------- /4.VPN/files.ssh/known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/files.ssh/known_hosts -------------------------------------------------------------------------------- /4.VPN/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/install.sh -------------------------------------------------------------------------------- /4.VPN/settings-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/settings-installer.sh -------------------------------------------------------------------------------- /4.VPN/settings-qube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/settings-qube.sh -------------------------------------------------------------------------------- /4.VPN/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/4.VPN/uninstall.sh -------------------------------------------------------------------------------- /5.Storage/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/custom/custom.sh -------------------------------------------------------------------------------- /5.Storage/custom/permissions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5.Storage/default.iscsi/debian-core/etc/protect/template.core-iscsi/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/default.iscsi/debian-core/etc/protect/template.core-iscsi/config/rc.local -------------------------------------------------------------------------------- /5.Storage/default.iscsi/debian-core/etc/protect/template.core-iscsi/usrlocal/bin/liteqube-amount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/default.iscsi/debian-core/etc/protect/template.core-iscsi/usrlocal/bin/liteqube-amount -------------------------------------------------------------------------------- /5.Storage/default.iscsi/debian-core/lib/systemd/system/liteqube-at-shutdown.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/default.iscsi/debian-core/lib/systemd/system/liteqube-at-shutdown.service -------------------------------------------------------------------------------- /5.Storage/default.iscsi/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/default.iscsi/permissions -------------------------------------------------------------------------------- /5.Storage/default/debian-core/etc/protect/template.core-decrypt/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/default/debian-core/etc/protect/template.core-decrypt/config/rc.local -------------------------------------------------------------------------------- /5.Storage/default/debian-core/etc/protect/template.core-decrypt/usrlocal/bin/liteqube-amount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/default/debian-core/etc/protect/template.core-decrypt/usrlocal/bin/liteqube-amount -------------------------------------------------------------------------------- /5.Storage/default/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/default/permissions -------------------------------------------------------------------------------- /5.Storage/files/lq-storage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/files/lq-storage -------------------------------------------------------------------------------- /5.Storage/files/open-iscsi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/files/open-iscsi/.gitignore -------------------------------------------------------------------------------- /5.Storage/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/install.sh -------------------------------------------------------------------------------- /5.Storage/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/5.Storage/uninstall.sh -------------------------------------------------------------------------------- /6.RDP/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/custom/custom.sh -------------------------------------------------------------------------------- /6.RDP/custom/permissions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6.RDP/default/debian-core/etc/protect/template.core-rdp/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/default/debian-core/etc/protect/template.core-rdp/config/rc.local -------------------------------------------------------------------------------- /6.RDP/default/debian-core/etc/protect/template.core-rdp/home/user/.ssh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/default/debian-core/etc/protect/template.core-rdp/home/user/.ssh/.gitignore -------------------------------------------------------------------------------- /6.RDP/default/debian-core/etc/protect/template.core-rdp/home/user/tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/default/debian-core/etc/protect/template.core-rdp/home/user/tmp/.gitignore -------------------------------------------------------------------------------- /6.RDP/default/debian-core/etc/protect/template.core-rdp/usrlocal/bin/liteqube-shutdown-inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/default/debian-core/etc/protect/template.core-rdp/usrlocal/bin/liteqube-shutdown-inactive -------------------------------------------------------------------------------- /6.RDP/default/debian-core/etc/qubes-rpc/liteqube.RDP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/default/debian-core/etc/qubes-rpc/liteqube.RDP -------------------------------------------------------------------------------- /6.RDP/default/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/default/permissions -------------------------------------------------------------------------------- /6.RDP/files/lq-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/files/lq-remote -------------------------------------------------------------------------------- /6.RDP/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/install.sh -------------------------------------------------------------------------------- /6.RDP/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/6.RDP/uninstall.sh -------------------------------------------------------------------------------- /7.Audio/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/custom/custom.sh -------------------------------------------------------------------------------- /7.Audio/custom/debian-core/etc/protect/template.core-sound/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/custom/debian-core/etc/protect/template.core-sound/config/rc.local -------------------------------------------------------------------------------- /7.Audio/custom/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/custom/permissions -------------------------------------------------------------------------------- /7.Audio/default/debian-core/etc/modprobe.d/liteqube-sound.conf: -------------------------------------------------------------------------------- 1 | options snd_hda_intel power_save=0 2 | -------------------------------------------------------------------------------- /7.Audio/default/debian-core/etc/protect/template.core-sound/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/debian-core/etc/protect/template.core-sound/config/rc.local -------------------------------------------------------------------------------- /7.Audio/default/debian-core/etc/protect/template.core-sound/usrlocal/bin/liteqube-pulseaudio-daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/debian-core/etc/protect/template.core-sound/usrlocal/bin/liteqube-pulseaudio-daemon -------------------------------------------------------------------------------- /7.Audio/default/debian-core/etc/protect/template.core-sound/usrlocal/bin/liteqube-pulseaudio-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/debian-core/etc/protect/template.core-sound/usrlocal/bin/liteqube-pulseaudio-monitor -------------------------------------------------------------------------------- /7.Audio/default/debian-core/etc/qubes-rpc/liteqube.SoundVolume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/debian-core/etc/qubes-rpc/liteqube.SoundVolume -------------------------------------------------------------------------------- /7.Audio/default/debian-core/lib/systemd/system/liteqube-pulseaudio-daemon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/debian-core/lib/systemd/system/liteqube-pulseaudio-daemon.service -------------------------------------------------------------------------------- /7.Audio/default/debian-core/lib/systemd/system/liteqube-pulseaudio-hardware.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/debian-core/lib/systemd/system/liteqube-pulseaudio-hardware.service -------------------------------------------------------------------------------- /7.Audio/default/debian-core/lib/systemd/system/liteqube-pulseaudio-monitor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/debian-core/lib/systemd/system/liteqube-pulseaudio-monitor.service -------------------------------------------------------------------------------- /7.Audio/default/dom0/etc/qubes-rpc/liteqube.SignalSound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/dom0/etc/qubes-rpc/liteqube.SignalSound -------------------------------------------------------------------------------- /7.Audio/default/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/default/permissions -------------------------------------------------------------------------------- /7.Audio/files/lq-mic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/files/lq-mic -------------------------------------------------------------------------------- /7.Audio/files/lq-volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/files/lq-volume -------------------------------------------------------------------------------- /7.Audio/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/install.sh -------------------------------------------------------------------------------- /7.Audio/settings-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/settings-installer.sh -------------------------------------------------------------------------------- /7.Audio/settings-qube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/settings-qube.sh -------------------------------------------------------------------------------- /7.Audio/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/7.Audio/uninstall.sh -------------------------------------------------------------------------------- /8.Print/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/custom/custom.sh -------------------------------------------------------------------------------- /8.Print/custom/permissions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8.Print/default/debian-core/etc/protect/template.core-print/bind-dirs/var/cache/cups/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/debian-core/etc/protect/template.core-print/bind-dirs/var/cache/cups/.gitignore -------------------------------------------------------------------------------- /8.Print/default/debian-core/etc/protect/template.core-print/bind-dirs/var/spool/cups/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/debian-core/etc/protect/template.core-print/bind-dirs/var/spool/cups/.gitignore -------------------------------------------------------------------------------- /8.Print/default/debian-core/etc/protect/template.core-print/config/qubes-bind-dirs.d/50_user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/debian-core/etc/protect/template.core-print/config/qubes-bind-dirs.d/50_user.conf -------------------------------------------------------------------------------- /8.Print/default/debian-core/etc/protect/template.core-print/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/debian-core/etc/protect/template.core-print/config/rc.local -------------------------------------------------------------------------------- /8.Print/default/debian-core/etc/protect/template.core-print/home/user/QubesIncoming/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/debian-core/etc/protect/template.core-print/home/user/QubesIncoming/.gitignore -------------------------------------------------------------------------------- /8.Print/default/debian-core/etc/protect/template.core-print/home/user/lq-printers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/debian-core/etc/protect/template.core-print/home/user/lq-printers -------------------------------------------------------------------------------- /8.Print/default/debian-core/etc/protect/template.core-print/usrlocal/bin/liteqube-print-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/debian-core/etc/protect/template.core-print/usrlocal/bin/liteqube-print-monitor -------------------------------------------------------------------------------- /8.Print/default/debian-core/lib/systemd/system/liteqube-print-monitor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/debian-core/lib/systemd/system/liteqube-print-monitor.service -------------------------------------------------------------------------------- /8.Print/default/dom0/etc/qubes-rpc/policy/liteqube.PrintFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8.Print/default/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/default/permissions -------------------------------------------------------------------------------- /8.Print/files/liteqube-print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/files/liteqube-print -------------------------------------------------------------------------------- /8.Print/files/lq-printers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/files/lq-printers -------------------------------------------------------------------------------- /8.Print/files/ppd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/files/ppd/.gitignore -------------------------------------------------------------------------------- /8.Print/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/install.sh -------------------------------------------------------------------------------- /8.Print/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/8.Print/uninstall.sh -------------------------------------------------------------------------------- /9.Mail/custom/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/custom/custom.sh -------------------------------------------------------------------------------- /9.Mail/custom/dom0/etc/qubes-rpc/liteqube.SignalMail: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /9.Mail/custom/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/custom/permissions -------------------------------------------------------------------------------- /9.Mail/default/core-getmail/home/user/getmail/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/default/core-getmail/home/user/getmail/.gitignore -------------------------------------------------------------------------------- /9.Mail/default/debian-core/etc/protect/template.core-getmail/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/default/debian-core/etc/protect/template.core-getmail/config/rc.local -------------------------------------------------------------------------------- /9.Mail/default/debian-core/etc/protect/template.core-sendmail/config/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/default/debian-core/etc/protect/template.core-sendmail/config/rc.local -------------------------------------------------------------------------------- /9.Mail/default/debian-core/etc/protect/template.core-sendmail/home/user/.msmtprc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9.Mail/default/debian-core/etc/protect/whitelist.core-getmail/home/user/getmail/.any_dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9.Mail/default/debian-core/etc/qubes-rpc/liteqube.MailCount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/default/debian-core/etc/qubes-rpc/liteqube.MailCount -------------------------------------------------------------------------------- /9.Mail/default/debian-core/etc/qubes-rpc/liteqube.MailRead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/default/debian-core/etc/qubes-rpc/liteqube.MailRead -------------------------------------------------------------------------------- /9.Mail/default/debian-core/etc/qubes-rpc/liteqube.MailReceive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/default/debian-core/etc/qubes-rpc/liteqube.MailReceive -------------------------------------------------------------------------------- /9.Mail/default/debian-core/etc/qubes-rpc/liteqube.MailSend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/default/debian-core/etc/qubes-rpc/liteqube.MailSend -------------------------------------------------------------------------------- /9.Mail/default/dom0/etc/qubes-rpc/liteqube.SignalMail: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /9.Mail/default/permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/default/permissions -------------------------------------------------------------------------------- /9.Mail/dom0-scripts/liteqube-checkmail.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/dom0-scripts/liteqube-checkmail.service -------------------------------------------------------------------------------- /9.Mail/dom0-scripts/lq-addkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/dom0-scripts/lq-addkey -------------------------------------------------------------------------------- /9.Mail/dom0-scripts/lq-mail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/dom0-scripts/lq-mail -------------------------------------------------------------------------------- /9.Mail/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/install.sh -------------------------------------------------------------------------------- /9.Mail/mail-scripts/lq-mailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/mail-scripts/lq-mailer -------------------------------------------------------------------------------- /9.Mail/settings-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/settings-installer.sh -------------------------------------------------------------------------------- /9.Mail/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/9.Mail/uninstall.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-barinov/liteqube/HEAD/README.md --------------------------------------------------------------------------------