├── .gitignore ├── README.md ├── backports.txt ├── backports_kernel.txt ├── cache └── .gitignore ├── config ├── archives │ ├── lernstick-12.key │ └── lernstick-12.list ├── bootloaders │ └── isolinux │ │ ├── bootlogo.dir │ │ ├── de_AT.translation │ │ ├── de_CH.translation │ │ ├── de_DE.translation │ │ ├── es_ES.translation │ │ ├── font_size_10.fnt │ │ ├── font_size_12.fnt │ │ ├── font_size_15.fnt │ │ ├── font_size_20.fnt │ │ ├── fr_CH.translation │ │ ├── icon_config.jpg │ │ ├── icon_desktop.jpg │ │ ├── icon_harddisk.jpg │ │ ├── icon_hwinfo.jpg │ │ ├── icon_integrity_check.jpg │ │ ├── icon_keyboard.jpg │ │ ├── icon_language.jpg │ │ ├── icon_partition.jpg │ │ ├── icon_previous.jpg │ │ ├── icon_start.jpg │ │ ├── icon_storage_device.jpg │ │ ├── init │ │ ├── it_CH.translation │ │ ├── screenshot_cinnamon_200.jpg │ │ ├── screenshot_cinnamon_300.jpg │ │ ├── screenshot_enlightenment.png │ │ ├── screenshot_enlightenment_200.jpg │ │ ├── screenshot_enlightenment_300.jpg │ │ ├── screenshot_gnome_200.jpg │ │ ├── screenshot_gnome_300.jpg │ │ ├── screenshot_kde_desktop_200.jpg │ │ ├── screenshot_kde_desktop_300.jpg │ │ ├── screenshot_lxde_200.jpg │ │ ├── screenshot_lxde_300.jpg │ │ ├── screenshot_mate_200.jpg │ │ ├── screenshot_mate_300.jpg │ │ ├── screenshot_terminal_200.jpg │ │ ├── screenshot_terminal_300.jpg │ │ ├── screenshot_xfce_200.jpg │ │ ├── screenshot_xfce_300.jpg │ │ ├── splash_1024x600.jpg │ │ ├── splash_1024x768.jpg │ │ ├── splash_1280x1024.jpg │ │ ├── splash_1280x800.jpg │ │ ├── splash_1366x768.jpg │ │ ├── splash_800x600.jpg │ │ ├── splash_hdt.jpg │ │ ├── splash_hdt_de.jpg │ │ ├── splash_hdt_fr.jpg │ │ ├── splash_linux.jpg │ │ ├── splash_linux_de.jpg │ │ ├── splash_linux_fr.jpg │ │ ├── splash_xmlboot.jpg │ │ ├── splash_xmlboot_de.jpg │ │ └── splash_xmlboot_fr.jpg │ │ ├── gfxboot.c32 │ │ ├── hdt.c32 │ │ ├── isolinux.bin │ │ ├── isolinux.cfg │ │ ├── ldlinux.c32 │ │ ├── libcom32.c32 │ │ ├── libgpl.c32 │ │ ├── libmenu.c32 │ │ ├── libutil.c32 │ │ ├── message │ │ └── pci.ids ├── hooks │ └── live │ │ ├── copy_modules_alias.binary │ │ ├── enable-flathub.container │ │ ├── enable_cryptsetup.chroot │ │ ├── enable_memlockd.chroot │ │ ├── fix_syslinux.binary │ │ ├── fix_system_connections_permissions.chroot │ │ ├── grub-cleanup.binary │ │ ├── install_i386_programs.chroot │ │ ├── lernstick-doc-timestamp.chroot │ │ ├── pin_kernel.chroot │ │ ├── remove_files.chroot │ │ ├── setuid.chroot │ │ ├── uninstall_packages.chroot │ │ ├── update-command-not-found.chroot │ │ └── update-plymouth.chroot ├── includes.binary │ ├── .VolumeIcon.icns │ ├── .disk_label │ ├── .disk_label_2x │ ├── 1_Liesmich-DE.pdf │ ├── 1_Lismoi-FR.pdf │ ├── 1_Readme-EN.pdf │ ├── EFI │ │ └── boot │ │ │ ├── bootx64.efi.lernstick │ │ │ ├── grubx64.efi.lernstick │ │ │ └── mmx64.efi │ ├── autorun.inf │ ├── bitlocker-keys.bat │ ├── boot │ │ └── grub │ │ │ ├── efi.img.lernstick │ │ │ ├── grub.cfg │ │ │ ├── grub_desktop.cfg │ │ │ ├── grub_extended.cfg │ │ │ ├── grub_keyboard.cfg │ │ │ ├── grub_language.cfg │ │ │ ├── grub_live_media.cfg │ │ │ ├── grub_main.cfg │ │ │ ├── grub_persistence.cfg │ │ │ ├── grub_persistence_media.cfg │ │ │ ├── grub_quiet.cfg │ │ │ ├── grub_swap_partition.cfg │ │ │ ├── locale │ │ │ ├── de.mo │ │ │ └── fr.mo │ │ │ └── themes │ │ │ └── lernstick │ │ │ ├── clock.png │ │ │ ├── highlight_c.png │ │ │ ├── highlight_e.png │ │ │ ├── highlight_w.png │ │ │ ├── icons │ │ │ ├── cinnamon.png │ │ │ ├── configure.png │ │ │ ├── desktop.png │ │ │ ├── enlightenment.png │ │ │ ├── gnome.png │ │ │ ├── kde.png │ │ │ ├── keyboard.png │ │ │ ├── locale.png │ │ │ ├── lxde.png │ │ │ ├── mate.png │ │ │ ├── media.png │ │ │ ├── partition.png │ │ │ ├── quiet.png │ │ │ ├── start.png │ │ │ ├── swap.png │ │ │ ├── terminal.png │ │ │ └── xfce.png │ │ │ ├── lernstick-splash-1280x800.png │ │ │ ├── menu_e.png │ │ │ ├── menu_ne.png │ │ │ ├── menu_se.png │ │ │ ├── sb_frame_c.png │ │ │ ├── sb_frame_n.png │ │ │ ├── sb_frame_s.png │ │ │ ├── sb_thumb_c.png │ │ │ ├── sb_thumb_n.png │ │ │ ├── sb_thumb_s.png │ │ │ └── tick.png │ ├── lernstick.ico │ ├── live │ │ └── memtest │ ├── start.bat │ └── start_manual.bat ├── includes.chroot_after_packages │ ├── etc │ │ ├── NetworkManager │ │ │ └── conf.d │ │ │ │ └── ibridge.conf │ │ ├── lernstickWelcome │ │ ├── localtime │ │ ├── mopdrobe.d │ │ │ └── rtw8822bu.conf │ │ ├── sddm.conf │ │ ├── skel │ │ │ └── .bashrc │ │ ├── timezone │ │ └── xdg │ │ │ └── autostart │ │ │ └── clipit-startup.desktop │ └── var │ │ └── log │ │ └── journal │ │ └── .gitignore ├── includes.chroot_before_packages │ └── etc │ │ └── default │ │ ├── geogebra │ │ └── geogebra-classic ├── package-lists │ ├── cinnamon.list.chroot │ ├── commandline.list.chroot │ ├── debian_contrib-core.list.chroot │ ├── debian_contrib-default.list.chroot │ ├── debian_main-core.list.chroot │ ├── debian_main-default.list.chroot │ ├── debian_main-mini.list.chroot │ ├── debian_main-standard.list.chroot │ ├── debian_main_amd64.list.chroot │ ├── debian_non-free.list.chroot │ ├── education.list.chroot │ ├── enlightenment.list.chroot │ ├── games.list.chroot │ ├── gnome-core.list.chroot │ ├── gnome-default.list.chroot │ ├── gnome-mini.list.chroot │ ├── grub-efi.list.chroot │ ├── kde.list.chroot │ ├── lernstick-cinnamon.list.chroot │ ├── lernstick-core.list.chroot │ ├── lernstick-default.list.chroot │ ├── lernstick-drivers.list.chroot │ ├── lernstick-education.list.chroot │ ├── lernstick-enlightenment.list.chroot │ ├── lernstick-flatpak.list.chroot │ ├── lernstick-games.list.chroot │ ├── lernstick-gnome-core.list.chroot │ ├── lernstick-gnome-default.list.chroot │ ├── lernstick-gnome-mini.list.chroot │ ├── lernstick-kde.list.chroot │ ├── lernstick-lxde.list.chroot │ ├── lernstick-mate.list.chroot │ ├── lernstick-mini.list.chroot │ ├── lernstick-standard.list.chroot │ ├── lernstick-xfce.list.chroot │ ├── libreoffice-core.list.chroot │ ├── lxde.list.chroot │ ├── mate.list.chroot │ ├── printing.list.chroot │ └── xfce.list.chroot └── preseed │ ├── firmware-ipw2x00.cfg.chroot │ ├── firmware-ivtv.cfg.chroot │ ├── hddtemp.cfg.chroot │ ├── jackd.cfg.chroot │ ├── libfglrx.cfg.chroot │ ├── libgl1-nvidia-glx.cfg.chroot │ ├── locales.cfg.chroot │ ├── samba-common.cfg.chroot │ ├── steam.cfg.chroot │ ├── tzdata.cfg.chroot │ ├── virtualbox-ext-pack.cfg.chroot │ └── wireshark-common.cfg.chroot ├── constants.example ├── functions.sh ├── grub-gettext ├── compile_keyboard_layouts.sh ├── de.po ├── fr.po ├── update_mo.sh └── update_po.sh ├── lernstick_usb.svg ├── patches ├── kernel │ └── microsoft-surface-pro4-typecover.diff ├── live-boot │ ├── 0001-added-gettext-support-for-LUKS-prompt.diff │ └── command_line_support_for_livefs_on_non-removable_usb.patch ├── live-tools │ ├── 0001-remount-mount-path-instead-of-device.patch │ └── 0002-don-t-copy-initrd-and-vmlinuz-to-system-partition-me.patch └── squid │ └── squid4.patch ├── reprepro └── conf │ ├── distributions │ ├── filter-list-backports-debian08 │ ├── filter-list-backports-debian09 │ ├── filter-list-backports-debian10 │ ├── filter-list-deb-multimedia-debian08 │ ├── filter-list-deb-multimedia-debian09 │ ├── filter-list-deb-multimedia-debian10 │ ├── filter-list-geogebra │ ├── filter-list-itch-io-debian09 │ ├── filter-list-jitsi │ ├── filter-list-lateaching │ ├── filter-list-riot │ ├── filter-list-signal │ ├── filter-list-teams │ ├── filter-list-visual-studio │ ├── incoming │ ├── options │ ├── pulls │ └── updates ├── scripts ├── README ├── build-grub-signed ├── check-reverse-dependencies.sh ├── check_diverts.sh ├── checksize.sh ├── create_pbuilder_chroots.sh ├── hwdetect.c ├── hwdetect.mod └── pkg_deb.py ├── templates ├── README ├── theme.txt └── xmlboot.config └── todo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/README.md -------------------------------------------------------------------------------- /backports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/backports.txt -------------------------------------------------------------------------------- /backports_kernel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/backports_kernel.txt -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/cache/.gitignore -------------------------------------------------------------------------------- /config/archives/lernstick-12.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/archives/lernstick-12.key -------------------------------------------------------------------------------- /config/archives/lernstick-12.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/archives/lernstick-12.list -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/de_AT.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/de_AT.translation -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/de_CH.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/de_CH.translation -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/de_DE.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/de_DE.translation -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/es_ES.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/es_ES.translation -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/font_size_10.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/font_size_10.fnt -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/font_size_12.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/font_size_12.fnt -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/font_size_15.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/font_size_15.fnt -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/font_size_20.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/font_size_20.fnt -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/fr_CH.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/fr_CH.translation -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_config.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_desktop.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_harddisk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_harddisk.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_hwinfo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_hwinfo.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_integrity_check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_integrity_check.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_keyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_keyboard.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_language.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_partition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_partition.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_previous.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_previous.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_start.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/icon_storage_device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/icon_storage_device.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/init -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/it_CH.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/it_CH.translation -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_cinnamon_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_cinnamon_200.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_cinnamon_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_cinnamon_300.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_enlightenment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_enlightenment.png -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_enlightenment_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_enlightenment_200.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_enlightenment_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_enlightenment_300.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_gnome_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_gnome_200.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_gnome_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_gnome_300.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_kde_desktop_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_kde_desktop_200.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_kde_desktop_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_kde_desktop_300.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_lxde_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_lxde_200.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_lxde_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_lxde_300.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_mate_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_mate_200.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_mate_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_mate_300.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_terminal_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_terminal_200.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_terminal_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_terminal_300.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_xfce_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_xfce_200.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/screenshot_xfce_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/screenshot_xfce_300.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_1024x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_1024x600.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_1024x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_1024x768.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_1280x1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_1280x1024.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_1280x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_1280x800.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_1366x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_1366x768.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_800x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_800x600.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_hdt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_hdt.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_hdt_de.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_hdt_de.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_hdt_fr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_hdt_fr.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_linux.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_linux_de.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_linux_de.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_linux_fr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_linux_fr.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_xmlboot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_xmlboot.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_xmlboot_de.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_xmlboot_de.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/bootlogo.dir/splash_xmlboot_fr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/bootlogo.dir/splash_xmlboot_fr.jpg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/gfxboot.c32: -------------------------------------------------------------------------------- 1 | /usr/lib/syslinux/modules/bios/gfxboot.c32 -------------------------------------------------------------------------------- /config/bootloaders/isolinux/hdt.c32: -------------------------------------------------------------------------------- 1 | /usr/lib/syslinux/modules/bios/hdt.c32 -------------------------------------------------------------------------------- /config/bootloaders/isolinux/isolinux.bin: -------------------------------------------------------------------------------- 1 | /usr/lib/ISOLINUX/isolinux.bin -------------------------------------------------------------------------------- /config/bootloaders/isolinux/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/bootloaders/isolinux/isolinux.cfg -------------------------------------------------------------------------------- /config/bootloaders/isolinux/ldlinux.c32: -------------------------------------------------------------------------------- 1 | /usr/lib/syslinux/modules/bios/ldlinux.c32 -------------------------------------------------------------------------------- /config/bootloaders/isolinux/libcom32.c32: -------------------------------------------------------------------------------- 1 | /usr/lib/syslinux/modules/bios/libcom32.c32 -------------------------------------------------------------------------------- /config/bootloaders/isolinux/libgpl.c32: -------------------------------------------------------------------------------- 1 | /usr/lib/syslinux/modules/bios/libgpl.c32 -------------------------------------------------------------------------------- /config/bootloaders/isolinux/libmenu.c32: -------------------------------------------------------------------------------- 1 | /usr/lib/syslinux/modules/bios/libmenu.c32 -------------------------------------------------------------------------------- /config/bootloaders/isolinux/libutil.c32: -------------------------------------------------------------------------------- 1 | /usr/lib/syslinux/modules/bios/libutil.c32 -------------------------------------------------------------------------------- /config/bootloaders/isolinux/message: -------------------------------------------------------------------------------- 1 | gfxboot didn't work? Try one of those: 2 | linux 3 | memtest 4 | 5 | -------------------------------------------------------------------------------- /config/bootloaders/isolinux/pci.ids: -------------------------------------------------------------------------------- 1 | /usr/share/misc/pci.ids -------------------------------------------------------------------------------- /config/hooks/live/copy_modules_alias.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/copy_modules_alias.binary -------------------------------------------------------------------------------- /config/hooks/live/enable-flathub.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/enable-flathub.container -------------------------------------------------------------------------------- /config/hooks/live/enable_cryptsetup.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/enable_cryptsetup.chroot -------------------------------------------------------------------------------- /config/hooks/live/enable_memlockd.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/enable_memlockd.chroot -------------------------------------------------------------------------------- /config/hooks/live/fix_syslinux.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/fix_syslinux.binary -------------------------------------------------------------------------------- /config/hooks/live/fix_system_connections_permissions.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/fix_system_connections_permissions.chroot -------------------------------------------------------------------------------- /config/hooks/live/grub-cleanup.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/grub-cleanup.binary -------------------------------------------------------------------------------- /config/hooks/live/install_i386_programs.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/install_i386_programs.chroot -------------------------------------------------------------------------------- /config/hooks/live/lernstick-doc-timestamp.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/lernstick-doc-timestamp.chroot -------------------------------------------------------------------------------- /config/hooks/live/pin_kernel.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/pin_kernel.chroot -------------------------------------------------------------------------------- /config/hooks/live/remove_files.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/remove_files.chroot -------------------------------------------------------------------------------- /config/hooks/live/setuid.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/setuid.chroot -------------------------------------------------------------------------------- /config/hooks/live/uninstall_packages.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/uninstall_packages.chroot -------------------------------------------------------------------------------- /config/hooks/live/update-command-not-found.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/update-command-not-found.chroot -------------------------------------------------------------------------------- /config/hooks/live/update-plymouth.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/hooks/live/update-plymouth.chroot -------------------------------------------------------------------------------- /config/includes.binary/.VolumeIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/.VolumeIcon.icns -------------------------------------------------------------------------------- /config/includes.binary/.disk_label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/.disk_label -------------------------------------------------------------------------------- /config/includes.binary/.disk_label_2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/.disk_label_2x -------------------------------------------------------------------------------- /config/includes.binary/1_Liesmich-DE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/1_Liesmich-DE.pdf -------------------------------------------------------------------------------- /config/includes.binary/1_Lismoi-FR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/1_Lismoi-FR.pdf -------------------------------------------------------------------------------- /config/includes.binary/1_Readme-EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/1_Readme-EN.pdf -------------------------------------------------------------------------------- /config/includes.binary/EFI/boot/bootx64.efi.lernstick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/EFI/boot/bootx64.efi.lernstick -------------------------------------------------------------------------------- /config/includes.binary/EFI/boot/grubx64.efi.lernstick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/EFI/boot/grubx64.efi.lernstick -------------------------------------------------------------------------------- /config/includes.binary/EFI/boot/mmx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/EFI/boot/mmx64.efi -------------------------------------------------------------------------------- /config/includes.binary/autorun.inf: -------------------------------------------------------------------------------- 1 | [autorun] 2 | icon = lernstick.ico 3 | -------------------------------------------------------------------------------- /config/includes.binary/bitlocker-keys.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/bitlocker-keys.bat -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/efi.img.lernstick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/efi.img.lernstick -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_desktop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_desktop.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_extended.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_extended.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_keyboard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_keyboard.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_language.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_language.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_live_media.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_live_media.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_main.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_persistence.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_persistence.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_persistence_media.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_persistence_media.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_quiet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_quiet.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/grub_swap_partition.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/grub_swap_partition.cfg -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/locale/de.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/locale/de.mo -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/locale/fr.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/locale/fr.mo -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/clock.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/highlight_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/highlight_c.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/highlight_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/highlight_e.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/highlight_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/highlight_w.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/cinnamon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/cinnamon.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/configure.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/desktop.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/enlightenment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/enlightenment.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/gnome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/gnome.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/kde.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/keyboard.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/locale.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/lxde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/lxde.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/mate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/mate.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/media.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/partition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/partition.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/quiet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/quiet.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/start.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/swap.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/terminal.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/icons/xfce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/icons/xfce.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/lernstick-splash-1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/lernstick-splash-1280x800.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/menu_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/menu_e.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/menu_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/menu_ne.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/menu_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/menu_se.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/sb_frame_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/sb_frame_c.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/sb_frame_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/sb_frame_n.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/sb_frame_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/sb_frame_s.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/sb_thumb_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/sb_thumb_c.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/sb_thumb_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/sb_thumb_n.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/sb_thumb_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/sb_thumb_s.png -------------------------------------------------------------------------------- /config/includes.binary/boot/grub/themes/lernstick/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/boot/grub/themes/lernstick/tick.png -------------------------------------------------------------------------------- /config/includes.binary/lernstick.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/lernstick.ico -------------------------------------------------------------------------------- /config/includes.binary/live/memtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/live/memtest -------------------------------------------------------------------------------- /config/includes.binary/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.binary/start.bat -------------------------------------------------------------------------------- /config/includes.binary/start_manual.bat: -------------------------------------------------------------------------------- 1 | shutdown /r /o /f /t 00 2 | -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/etc/NetworkManager/conf.d/ibridge.conf: -------------------------------------------------------------------------------- 1 | [keyfile] 2 | unmanaged-devices=mac:ac:de:48:00:11:22 -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/etc/lernstickWelcome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.chroot_after_packages/etc/lernstickWelcome -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/Europe/Zurich -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/etc/mopdrobe.d/rtw8822bu.conf: -------------------------------------------------------------------------------- 1 | blacklist rtw88_8822bu 2 | -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/etc/sddm.conf: -------------------------------------------------------------------------------- 1 | [Autologin] 2 | Session=plasma.desktop 3 | User=user 4 | -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.chroot_after_packages/etc/skel/.bashrc -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/etc/timezone: -------------------------------------------------------------------------------- 1 | Europe/Zurich 2 | -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/etc/xdg/autostart/clipit-startup.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.chroot_after_packages/etc/xdg/autostart/clipit-startup.desktop -------------------------------------------------------------------------------- /config/includes.chroot_after_packages/var/log/journal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.chroot_after_packages/var/log/journal/.gitignore -------------------------------------------------------------------------------- /config/includes.chroot_before_packages/etc/default/geogebra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.chroot_before_packages/etc/default/geogebra -------------------------------------------------------------------------------- /config/includes.chroot_before_packages/etc/default/geogebra-classic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/includes.chroot_before_packages/etc/default/geogebra-classic -------------------------------------------------------------------------------- /config/package-lists/cinnamon.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/cinnamon.list.chroot -------------------------------------------------------------------------------- /config/package-lists/commandline.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/commandline.list.chroot -------------------------------------------------------------------------------- /config/package-lists/debian_contrib-core.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/debian_contrib-core.list.chroot -------------------------------------------------------------------------------- /config/package-lists/debian_contrib-default.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/debian_contrib-default.list.chroot -------------------------------------------------------------------------------- /config/package-lists/debian_main-core.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/debian_main-core.list.chroot -------------------------------------------------------------------------------- /config/package-lists/debian_main-default.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/debian_main-default.list.chroot -------------------------------------------------------------------------------- /config/package-lists/debian_main-mini.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/debian_main-mini.list.chroot -------------------------------------------------------------------------------- /config/package-lists/debian_main-standard.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/debian_main-standard.list.chroot -------------------------------------------------------------------------------- /config/package-lists/debian_main_amd64.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/debian_main_amd64.list.chroot -------------------------------------------------------------------------------- /config/package-lists/debian_non-free.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/debian_non-free.list.chroot -------------------------------------------------------------------------------- /config/package-lists/education.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/education.list.chroot -------------------------------------------------------------------------------- /config/package-lists/enlightenment.list.chroot: -------------------------------------------------------------------------------- 1 | enlightenment 2 | terminology 3 | -------------------------------------------------------------------------------- /config/package-lists/games.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/games.list.chroot -------------------------------------------------------------------------------- /config/package-lists/gnome-core.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/gnome-core.list.chroot -------------------------------------------------------------------------------- /config/package-lists/gnome-default.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/gnome-default.list.chroot -------------------------------------------------------------------------------- /config/package-lists/gnome-mini.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/gnome-mini.list.chroot -------------------------------------------------------------------------------- /config/package-lists/grub-efi.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/grub-efi.list.chroot -------------------------------------------------------------------------------- /config/package-lists/kde.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/kde.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-cinnamon.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-cinnamon.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-core.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-core.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-default.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-default.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-drivers.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-drivers.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-education.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-education.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-enlightenment.list.chroot: -------------------------------------------------------------------------------- 1 | lernstick-libelementary-bin 2 | -------------------------------------------------------------------------------- /config/package-lists/lernstick-flatpak.list.chroot: -------------------------------------------------------------------------------- 1 | lernstick-flatpak-musescore 2 | -------------------------------------------------------------------------------- /config/package-lists/lernstick-games.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-games.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-gnome-core.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-gnome-core.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-gnome-default.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-gnome-default.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-gnome-mini.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-gnome-mini.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-kde.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-kde.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-lxde.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-lxde.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-mate.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-mate.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-mini.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-mini.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-standard.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-standard.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lernstick-xfce.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/lernstick-xfce.list.chroot -------------------------------------------------------------------------------- /config/package-lists/libreoffice-core.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/libreoffice-core.list.chroot -------------------------------------------------------------------------------- /config/package-lists/lxde.list.chroot: -------------------------------------------------------------------------------- 1 | lxde 2 | -------------------------------------------------------------------------------- /config/package-lists/mate.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/mate.list.chroot -------------------------------------------------------------------------------- /config/package-lists/printing.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/printing.list.chroot -------------------------------------------------------------------------------- /config/package-lists/xfce.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/package-lists/xfce.list.chroot -------------------------------------------------------------------------------- /config/preseed/firmware-ipw2x00.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/firmware-ipw2x00.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/firmware-ivtv.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/firmware-ivtv.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/hddtemp.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/hddtemp.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/jackd.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/jackd.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/libfglrx.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/libfglrx.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/libgl1-nvidia-glx.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/libgl1-nvidia-glx.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/locales.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/locales.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/samba-common.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/samba-common.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/steam.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/steam.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/tzdata.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/tzdata.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/virtualbox-ext-pack.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/virtualbox-ext-pack.cfg.chroot -------------------------------------------------------------------------------- /config/preseed/wireshark-common.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/config/preseed/wireshark-common.cfg.chroot -------------------------------------------------------------------------------- /constants.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/constants.example -------------------------------------------------------------------------------- /functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/functions.sh -------------------------------------------------------------------------------- /grub-gettext/compile_keyboard_layouts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/grub-gettext/compile_keyboard_layouts.sh -------------------------------------------------------------------------------- /grub-gettext/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/grub-gettext/de.po -------------------------------------------------------------------------------- /grub-gettext/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/grub-gettext/fr.po -------------------------------------------------------------------------------- /grub-gettext/update_mo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/grub-gettext/update_mo.sh -------------------------------------------------------------------------------- /grub-gettext/update_po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/grub-gettext/update_po.sh -------------------------------------------------------------------------------- /lernstick_usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/lernstick_usb.svg -------------------------------------------------------------------------------- /patches/kernel/microsoft-surface-pro4-typecover.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/patches/kernel/microsoft-surface-pro4-typecover.diff -------------------------------------------------------------------------------- /patches/live-boot/0001-added-gettext-support-for-LUKS-prompt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/patches/live-boot/0001-added-gettext-support-for-LUKS-prompt.diff -------------------------------------------------------------------------------- /patches/live-boot/command_line_support_for_livefs_on_non-removable_usb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/patches/live-boot/command_line_support_for_livefs_on_non-removable_usb.patch -------------------------------------------------------------------------------- /patches/live-tools/0001-remount-mount-path-instead-of-device.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/patches/live-tools/0001-remount-mount-path-instead-of-device.patch -------------------------------------------------------------------------------- /patches/live-tools/0002-don-t-copy-initrd-and-vmlinuz-to-system-partition-me.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/patches/live-tools/0002-don-t-copy-initrd-and-vmlinuz-to-system-partition-me.patch -------------------------------------------------------------------------------- /patches/squid/squid4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/patches/squid/squid4.patch -------------------------------------------------------------------------------- /reprepro/conf/distributions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/distributions -------------------------------------------------------------------------------- /reprepro/conf/filter-list-backports-debian08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/filter-list-backports-debian08 -------------------------------------------------------------------------------- /reprepro/conf/filter-list-backports-debian09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/filter-list-backports-debian09 -------------------------------------------------------------------------------- /reprepro/conf/filter-list-backports-debian10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/filter-list-backports-debian10 -------------------------------------------------------------------------------- /reprepro/conf/filter-list-deb-multimedia-debian08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/filter-list-deb-multimedia-debian08 -------------------------------------------------------------------------------- /reprepro/conf/filter-list-deb-multimedia-debian09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/filter-list-deb-multimedia-debian09 -------------------------------------------------------------------------------- /reprepro/conf/filter-list-deb-multimedia-debian10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/filter-list-deb-multimedia-debian10 -------------------------------------------------------------------------------- /reprepro/conf/filter-list-geogebra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/filter-list-geogebra -------------------------------------------------------------------------------- /reprepro/conf/filter-list-itch-io-debian09: -------------------------------------------------------------------------------- 1 | itch install 2 | -------------------------------------------------------------------------------- /reprepro/conf/filter-list-jitsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/filter-list-jitsi -------------------------------------------------------------------------------- /reprepro/conf/filter-list-lateaching: -------------------------------------------------------------------------------- 1 | lateaching install 2 | -------------------------------------------------------------------------------- /reprepro/conf/filter-list-riot: -------------------------------------------------------------------------------- 1 | riot-web install 2 | -------------------------------------------------------------------------------- /reprepro/conf/filter-list-signal: -------------------------------------------------------------------------------- 1 | signal-desktop install 2 | -------------------------------------------------------------------------------- /reprepro/conf/filter-list-teams: -------------------------------------------------------------------------------- 1 | teams install 2 | -------------------------------------------------------------------------------- /reprepro/conf/filter-list-visual-studio: -------------------------------------------------------------------------------- 1 | code install 2 | -------------------------------------------------------------------------------- /reprepro/conf/incoming: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/incoming -------------------------------------------------------------------------------- /reprepro/conf/options: -------------------------------------------------------------------------------- 1 | verbose 2 | basedir . 3 | -------------------------------------------------------------------------------- /reprepro/conf/pulls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/pulls -------------------------------------------------------------------------------- /reprepro/conf/updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/reprepro/conf/updates -------------------------------------------------------------------------------- /scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/README -------------------------------------------------------------------------------- /scripts/build-grub-signed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/build-grub-signed -------------------------------------------------------------------------------- /scripts/check-reverse-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/check-reverse-dependencies.sh -------------------------------------------------------------------------------- /scripts/check_diverts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/check_diverts.sh -------------------------------------------------------------------------------- /scripts/checksize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/checksize.sh -------------------------------------------------------------------------------- /scripts/create_pbuilder_chroots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/create_pbuilder_chroots.sh -------------------------------------------------------------------------------- /scripts/hwdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/hwdetect.c -------------------------------------------------------------------------------- /scripts/hwdetect.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/hwdetect.mod -------------------------------------------------------------------------------- /scripts/pkg_deb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/scripts/pkg_deb.py -------------------------------------------------------------------------------- /templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/templates/README -------------------------------------------------------------------------------- /templates/theme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/templates/theme.txt -------------------------------------------------------------------------------- /templates/xmlboot.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/templates/xmlboot.config -------------------------------------------------------------------------------- /todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lernstick/lernstickAdvanced/HEAD/todo --------------------------------------------------------------------------------