diff --git a/privacy/build.sh b/privacy/build.sh
new file mode 100755
index 0000000000000000000000000000000000000000..c474c9fa0eb3c3884e67342db6389c83abd4c62c
--- /dev/null
+++ b/privacy/build.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+echo "Building pdf..."
+pandoc -t beamer --template template.tex --listings pres.md -o pres-part.pdf --pdf-engine pdflatex \
+    && pandoc -t beamer --template template.tex --listings firstslide.md -o firstslide.pdf --pdf-engine pdflatex \
+    && pdfunite firstslide.pdf pres-part.pdf pres.pdf \
+    && rm firstslide.pdf pres-part.pdf \
+    && echo "Build successful"
diff --git a/privacy/firstslide.md b/privacy/firstslide.md
new file mode 100644
index 0000000000000000000000000000000000000000..bd2fe06bd43b4baf3b7eeb50b01d4502f1f32337
--- /dev/null
+++ b/privacy/firstslide.md
@@ -0,0 +1,7 @@
+# Welcome to the Privacy course!
+
+* Please get your certificate and identifying documents ready
+
+* Slides available under thealternative.ch -> courses -> privacy
+
+* If there are any technical problems, let me know!
diff --git a/privacy/header.tex b/privacy/header.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e9dd259ce3e9e9cbdafb5bd0dfa6c3055e30c577
--- /dev/null
+++ b/privacy/header.tex
@@ -0,0 +1,133 @@
+\usepackage[T1]{fontenc} %pipes don't display properly without this
+\usepackage[utf8]{inputenc}
+\usepackage{listings}
+\usepackage{color}
+\usepackage{datapie}
+\usepackage{multicol}
+\usepackage{siunitx} %pretty measurement unit rendering
+\usepackage{hyperref} %enable hyperlink for urls
+\usepackage{caption} % needed to tweak caption size
+
+
+\usefonttheme[onlymath]{serif}
+\setcounter{MaxMatrixCols}{20}
+
+\DeclareSIUnit\pixel{px}
+
+\usecolortheme[RGB={37,68,113}]{structure}
+\usetheme{Dresden}
+
+\newenvironment{figurehere}
+{\def\@captype{figure}}
+{}
+\makeatother
+
+%commands to exclude sections from miniframes
+\makeatletter
+\let\beamer@writeslidentry@miniframeson=\beamer@writeslidentry
+\def\beamer@writeslidentry@miniframesoff{%
+   	\expandafter\beamer@ifempty\expandafter{\beamer@framestartpage}{}% does not happen normally
+   	{%else
+   		% removed \addtocontents commands
+   		\clearpage\beamer@notesactions%
+   	}
+}
+\newcommand*{\miniframeson}{\let\beamer@writeslidentry=\beamer@writeslidentry@miniframeson}
+\newcommand*{\miniframesoff}{\let\beamer@writeslidentry=\beamer@writeslidentry@miniframesoff}
+\beamer@compresstrue
+\makeatother
+
+
+%various gray colors
+\definecolor{slg}{gray}{0.25}
+\definecolor{lg}{gray}{0.55}
+\definecolor{vlg}{gray}{0.73}
+\definecolor{tlg}{gray}{0.9}
+
+%TheAlt colors
+\definecolor{ldorange}{HTML}{F18A20}
+\colorlet{ldbright}{ldorange!70!white} % tinted version of orange, used in miniframes
+\definecolor{ldblue}{HTML}{254471}
+
+%reduce caption font size:
+\captionsetup{font={scriptsize,color=lg}}
+
+%do not prepend numbering/lettering to figures/subfigures
+\captionsetup{labelformat=empty} %do not prepend letters to figure captions
+
+%Apply TheAlt colors to theme
+ % section titles in top navigation bar
+\setbeamercolor{section in head/foot}{parent=palette tertiary,fg=ldorange}
+\setbeamertemplate{section in head/foot shaded}{\color{ldbright}\usebeamertemplate{section in head/foot}}
+ % miniframes (little navigation circles)
+\setbeamercolor*{mini frame}{fg=ldorange,bg=ldbright}
+\setbeamertemplate{mini frame in other section}[default][0]
+\setbeamertemplate{mini frame in other subsection}[default][0]
+ % others
+\setbeamercolor{author in head/foot}{fg=white}
+\setbeamercolor{subsection in head/foot}{fg=white}
+\setbeamercolor{caption name}{fg=vlg}
+\setbeamercolor{caption}{fg=vlg}
+\setbeamercolor{frametitle}{fg=ldblue}
+
+\setbeamertemplate{caption}{\raggedright\insertcaption\par}
+\setbeamertemplate{navigation symbols}{}
+\setbeamertemplate{bibliography item}[text]
+
+\definecolor{mygreen}{rgb}{0,0.6,0}
+\definecolor{mygray}{rgb}{0.5,0.5,0.5}
+\definecolor{mymauve}{rgb}{0.58,0,0.82}
+
+\lstdefinestyle{custombash}{
+	belowcaptionskip=1\baselineskip,
+	captionpos=,
+	breaklines=true,
+	frame=L,
+	xleftmargin=\parindent,
+	language=bash,
+	showstringspaces=false,
+	basicstyle=\scriptsize\ttfamily,
+	rulecolor=\color{tlg},
+	backgroundcolor=\color{tlg},
+	fillcolor=\color{tlg},
+	rulesepcolor=\color{tlg},
+	commentstyle=\itshape\color{purple!60!black},
+	keywordstyle=\bfseries\color{ldorange!80!black},
+	%keywordstyle=\bfseries\color{green!40!black},
+	identifierstyle=\color{blue},
+	stringstyle=\color{orange},
+}
+
+\lstset{language=Bash,style=custombash,caption={Descriptive Caption Text},label=DescriptiveLabel}
+
+\title{Bash Workshop}
+\author{Aline Abler}
+
+\institute{\includegraphics[width=0.35\textwidth]{img/logo_blue.pdf}}
+
+
+\renewcommand{\emph}[1]{\textcolor{ldorange}{#1}}
+\newcommand{\soft}[1]{\textcolor{lg}{#1}}
+\newcommand{\textt}[1]{\textcolor{blue}{\texttt{#1}}}
+\newcommand{\bigtext}[1]{\centering\Huge \textbf{\textcolor{ldorange}{#1}}}
+
+%shortcut to insert small logo in footline
+\def\logo{%
+	\resizebox{!}{3ex}{\includegraphics{img/logo_white.pdf}}
+}
+
+% Define a custom footline that includes our logo
+\setbeamertemplate{footline}
+{%
+	\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,%
+		leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}
+		\usebeamerfont{title in head/foot}%
+		\insertshorttitle\hfill\insertframenumber
+	\end{beamercolorbox}
+	\begin{beamercolorbox}[wd=\paperwidth,ht=3.5ex,dp=1.625ex,%
+		leftskip=.3cm,rightskip=.3cm plus1fil]{author in head/foot}
+		\usebeamerfont{author in head/foot}
+		\raisebox{0.5ex}{\insertshortauthor}\hfill\raisebox{-0.5ex}{\logo}
+	\end{beamercolorbox}
+}
+
diff --git a/privacy/img/fiche3.jpg b/privacy/img/fiche3.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..03a4425a5b6538e4712f0182a815c798690d2402
Binary files /dev/null and b/privacy/img/fiche3.jpg differ
diff --git a/privacy/img/fichefrisch.png b/privacy/img/fichefrisch.png
new file mode 100644
index 0000000000000000000000000000000000000000..dfec7b6c012bda73584817ab87a9ef181d74c1a2
Binary files /dev/null and b/privacy/img/fichefrisch.png differ
diff --git a/privacy/img/fichefrisch2.png b/privacy/img/fichefrisch2.png
new file mode 100644
index 0000000000000000000000000000000000000000..a37ee7c891ed60ff2a46306cea4c4add2ad5ab17
Binary files /dev/null and b/privacy/img/fichefrisch2.png differ
diff --git a/privacy/img/garfield_you_are_not_immune_to_propaganda.png b/privacy/img/garfield_you_are_not_immune_to_propaganda.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac1ee6f8261b55f6e7e775f69e12a933633db39b
Binary files /dev/null and b/privacy/img/garfield_you_are_not_immune_to_propaganda.png differ
diff --git a/privacy/img/logo_blue.pdf b/privacy/img/logo_blue.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..dd60efc4c6899371b6086d097bd64d744d55b127
Binary files /dev/null and b/privacy/img/logo_blue.pdf differ
diff --git a/privacy/img/logo_white.pdf b/privacy/img/logo_white.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..74e15f9b659f0609691256ad2075f21bec24882a
Binary files /dev/null and b/privacy/img/logo_white.pdf differ
diff --git a/privacy/img/matrixfederation.png b/privacy/img/matrixfederation.png
new file mode 100644
index 0000000000000000000000000000000000000000..093d618e163d632287083505e97581571264d033
Binary files /dev/null and b/privacy/img/matrixfederation.png differ
diff --git a/privacy/img/paveldurov.jpeg b/privacy/img/paveldurov.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..36946b837b51057c50ddb820bf5b0239a430a1d3
Binary files /dev/null and b/privacy/img/paveldurov.jpeg differ
diff --git a/privacy/img/signalsnowden.png b/privacy/img/signalsnowden.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9fe44bd7aacb0f101a3ae528749b6595375f18a
Binary files /dev/null and b/privacy/img/signalsnowden.png differ
diff --git a/privacy/img/tor-working.png b/privacy/img/tor-working.png
new file mode 100644
index 0000000000000000000000000000000000000000..af9489c8af3400a7aa3b573a2cdfb7893ad2d48e
Binary files /dev/null and b/privacy/img/tor-working.png differ
diff --git a/privacy/pres.md b/privacy/pres.md
new file mode 100644
index 0000000000000000000000000000000000000000..e08ed146c2be1a5a16dfeddda1c12bd708cebaea
--- /dev/null
+++ b/privacy/pres.md
@@ -0,0 +1,529 @@
+---
+author:
+- Noah Marti
+title: Privacy
+---
+
+# Overview
+
+## Table of Contents
+
+### Contents
+
+* A short history of privacy
+* Arguments for privacy
+* Implement privacy on your own
+* Discussion
+
+# A short history of privacy
+
+## Anecdotes
+
+### MLK suicide letter
+
+Martin Luther King Jr.
+
+* Leader of the american civil rights movement
+	* End discrimination against african americans in the U.S.
+
+FBI
+
+* Break up his marriage
+* Wanted the leaders to be at odds with each other
+* Send "ominous" threats
+
+### MLK suicide letter
+
+"King, look into your heart. You know you are a complete fraud and a great liability to all us Negroes.”
+
+“We will now have to depend on our older leaders like Wilkins, a man of character and thank God we have others like him. But you are done.” 
+
+### MLK suicide letter
+
+"No person can overcome the facts, not even a fraud like yourself. Lend your sexually psychotic ear to the enclosure. You will find yourself and in all your dirt, filth, evil and moronic talk exposed on the record for all time. . . . Listen to yourself, you filthy, abnormal animal. You are on the record."
+
+### MLK suicide letter
+
+"King, there is only one thing left for you to do. You know what it is. You have just 34 days in which to do it. You are done. *There is but one way out for you.* You better take it before your filthy, abnormal fraudulent self is bared to the nation."
+
+\soft{Source: https://www.eff.org/deeplinks/2014/11/fbis-suicide-letter-dr-martin-luther-king-jr-and-dangers-unchecked-surveillance}
+
+### Target knows you're pregnant
+
+* ID number for every customer
+	* Mail, credit card, name
+* Pregnancy prediction score
+	* Unscented lotion, nutrition supplements
+	* Predict due date
+
+### Target knows your pregnant
+
+Take a fictional Target shopper named Jenny Ward, who is 23, lives in Atlanta and in March bought cocoa-butter lotion, a purse large enough to double as a diaper bag, zinc and magnesium supplements and a bright blue rug. There’s, say, an *87 percent chance that she’s pregnant* and that her *delivery date is sometime in late August.*
+
+\soft{Source: https://www.forbes.com/sites/kashmirhill/2012/02/16/how-target-figured-out-a-teen-girl-was-pregnant-before-her-father-did/?sh=2c8ff2e66686}
+
+### Cambridge Analytica
+
+The Company
+
+* subsidary of the private intelligence company SCL group
+	* Ties to: British Conservative Party, British royalty, British military
+*  misappropriation of digital assets, data mining, data brokerage, data analysis during electoral processes
+* Donald Trumps and Ted Cruz's presidential campaign, brexit
+* 'War on Terror' Propaganda
+
+### Cambridge Analytica
+
+The Scandal
+
+*  CEO Alexander James Ashburner Nix boasted about: 
+	* using prostitutes, bribery sting operations, and honey traps to discredit oppositional politicians
+	* that the company "ran all of (Donald Trump's) digital campaign"
+* Data of up to 87 million Facebook users were aquired
+* US sensitive polling and election data were passed to Russian Intelligence
+
+### Cambridge Analytica
+
+The Aftermath
+
+* closed in 2018 (insolvency)
+* Several new firms with former officials
+	* Influencing politics and society in Africa and Middle East
+	* still working for governments
+
+### Cambridge Analytica
+
+The Methods
+
+* collect data
+* create psychological profiles
+* "influence their attitudes, emotions or behaviors through psychologically informed interventions at scale"
+
+"Today in the United States we have somewhere close to four or five thousand data points on every individual ... So we model the personality of every adult across the United States, some 230 million people." - CA Chief Executive
+
+### Cambridge Analytica
+
+The Effect
+
+* Moderate to Strong
+
+\soft{Source: https://en.wikipedia.org/wiki/Cambridge\_Analytica}
+
+### Fichen Affäre
+
+ThIs wOuLd nEvEr hApPeN In sWiTzErLaNd
+
+Yes. Yes it absolutely would.
+
+### Fichen Affäre
+
+What happened?
+
+* Parlamentarische Untersuchungskomission (parliamentary investigation commitee)
+* Observation of citizen through the police
+* Over 900'000 "Fichen"
+
+\soft{Source: https://de.wikipedia.org/wiki/Fichenskandal}
+
+\soft{Source: https://fichen.ch/}
+
+### Fichen Affäre
+
+\includegraphics[height=0.8\textheight]{img/fichefrisch.png}
+
+### Fichen Affäre
+
+\includegraphics[height=0.8\textheight]{img/fichefrisch2.png}
+
+### Fichen Affäre
+
+\includegraphics[height=0.8\textheight]{img/fiche3.jpg}
+
+# Arguments for privacy
+
+## Arguments
+
+### Privacy is a human right
+
+\bigtext{Privacy is a human right}
+
+### You are not immune to propaganda
+
+\includegraphics[height=0.8\textheight]{img/garfield_you_are_not_immune_to_propaganda.png}
+
+### Self censoring
+
+\bigtext{You are prone to self censoring}
+
+### What is illegal in the future?
+
+\bigtext{You don't know what is illegal in 20 years}
+
+### Online privacy is no different to offline privacy
+
+* What are your facial expressions when you sit on the toilet?
+* Where did your skin itch when you went to the doctor?
+* How cringy was the start and end of your last romantic encounter?
+* How does your underwear drawer look like?
+
+Only your business and noone's else
+
+# Do it yourself - privacy
+
+## About
+
+### What is this part of the presentation about?
+
+#### Yes
+
+* Protecting yourself from privacy abusing services
+
+#### No
+
+* Protecting you from hackers
+* Protecting you from intelligence services
+
+## General
+
+### Services not to use
+
+* Google
+* Facebook
+* Microsoft
+* Amazon
+* ...
+
+### General Advice
+
+\bigtext{If the service is free YOU are the product}
+
+### General Advice - Terms and conditions may apply
+
+#### Fortunately not always the case...
+
+* Free and Open Source Software (FOSS)
+* For example: GNU/Linux
+* Some companies rely on: donations, unpersonalized ads, community
+
+#### ... but ...
+
+* Just because you pay doesn't mean you don't get tracked (Windows)
+
+## Browsing the web
+
+### Browsers
+
+Browsers:
+
+There are infinitely many
+
+* Firefox
+* Chromium
+* GNU IceCat
+* Brave
+
+### Browser comparison
+
+ungoogled-chromium
+
+* chromium: open source project behind chrome
+* removed dependencies from google web services
+* still depends on google
+* github.com/Eloston/ungoogled-chromium
+
+### Browser comparison
+
+Firefox
+
+* open source/free software license
+* doesn't track you (that much)
+* a lot of add-ons
+
+### Browser comparison
+
+GNU IceCat
+
+* Ice isn't Fire and a Cat isn't a Fox
+* modified Firefox
+* fully free software
+* fewer add-ons
+
+### Browser comparison
+
+Brave
+
+* built in ad & tracker blocking
+* depends on chromium
+* Mozilla Public License
+
+### Search engines
+
+* DuckDuckGo
+* searX (Meta search engine)
+
+### Add-ons
+
+Firefox Add-ons
+
+* uBlock Origin
+* Privacy Possum
+* random user agent
+* uMatrix
+
+## Network
+
+### DNS-Server
+
+What is a DNS server
+
+* Dynamic Name System
+* resolves an IP from an address
+	* thealternative.ch 192.33.91.26
+
+Recommended
+
+* Mullvad DNS
+* A Pi-hole
+* (self host)
+
+### Router
+
+Hardware:
+
+* usually depends on your ISP
+* own router via bridging
+* everything with (W)LAN connectivity
+
+Operating System:
+
+* OpenWrt
+	* openwrt.org
+
+### Pi-hole
+
+* Network wide Ad-blocking
+* can be used as dhcpc server
+* EUPL (EU Public License)
+* Source code on github
+
+### Tor
+
+What is Tor?
+
+* We believe everyone should be able to explore the internet with privacy. We are the Tor Project, an [...] US nonprofit. We advance human rights and defend your privacy online through free software and open networks.
+
+### Tor
+
+\includegraphics[height=0.8\textheight]{img/tor-working.png}
+
+\soft{Source: https://fossbytes.com/everything-tor-tor-tor-works/}
+
+### Tor
+
+How does Tor work?
+
+* Normal: your PC -> Website
+* Tor: your PC -> Node1 -> Node2 -> Node3 -> Website
+* Every node adds an encryption layer
+
+### Tor
+
+What can I use Tor for?
+
+Yes:
+
+* stay anonymous
+
+No:
+
+* Most likely not safe for illegal stuff
+* CIA honeypot?
+
+### Tor
+
+#### Additional literature
+
+* https://mascherari.press/onionscan-report-april-2016-the-tor-network-security-and-crime/
+
+* https://mascherari.press/onionscan-report-fhii-a-new-map-and-the-future/
+
+
+## Spyware alternatives
+
+### Messengers
+
+* WhatsApp
+* Telegram
+* Signal
+* Matrix
+* Threema
+
+### Messenger Comparison
+
+Whatsapp
+
+* Made by Facebook
+
+### Messenger Comparison
+
+Telegram
+
+* Open Source Client
+* Server not Open Source
+* Financing
+	* CEO Pavel Durov
+	* Premium users
+	* One-to-many channels with ads
+* Allows secret chats
+
+\soft{telegram.org/faq}
+
+### Messenger Comparison
+
+Telegram - Pavel Durov
+
+* Rich
+* Has some interesting ideas
+* Critical of the russian regime
+* t.me/durov
+
+\includegraphics[height=0.8\textheight]{img/paveldurov.jpeg}
+
+### Messenger Comparison
+
+Matrix
+
+* Matrix is an open source project that publishes the Matrix open standard for secure, decentralised, real-time communication, and its Apache licensed reference implementations.
+* Both client(s) and server are open source (Apache License)
+* Decentralized
+* E2E encryption
+* No number required
+* A lot of features
+
+\soft{matrix.org}
+
+### Messenger Comparison
+
+Matrix - Federation
+
+\includegraphics[height=0.8\textheight]{img/matrixfederation.png}
+
+### Messenger Comparison
+
+Signal
+
+* Both client and server are open source (GNU Affero License)
+* E2E encryption
+* Easy to use
+
+\includegraphics[height=0.2\textheight]{img/signalsnowden.png}
+
+\soft{signal.org}
+
+### Messenger Comparison
+
+Threema
+
+* The messenger that puts security and privacy first
+* Swiss made
+* E2E encryption
+* No phone number required
+* Paid
+* threema.ch/en/messenger-comparison
+
+\soft{threema.ch}
+
+### Messenger Comparison
+
+#### Additional Literature
+
+* Session
+	* https://getsession.org/
+
+### Mail
+
+* Protonmail
+* self host
+
+### Payment Methods
+
+* Credit Cards / e-banking
+	* Whatever the banks are doing
+* Cryptocurrency
+	* pseudonym
+	* "let's produce a few tons of $CO_2$ to transfer 2.50.-"
+* Cash
+	* "anonymous"
+
+### App store
+
+Fdroid (Google Play replacement)
+
+* FOSS apps
+* Warns you from undesired attributes
+	* "advertises nonfree network services"
+* A lot of good replacements
+
+### Smartphone - Hardware alternatives
+
+* PinePhone (pine64.org)
+* Librem 5 (puri.sm)
+
+### Smartphone - OS alternatives
+
+* LineageOS
+	* A free and open-source operating system for various devices, based on the Android mobile platform.
+* GrapheneOS (only Pixel devices)
+	* GrapheneOS is a privacy and security focused mobile OS with Android app compatibility developed as a non-profit open source project.
+* /e/os
+	* We build desirable, open source, privacy-enabled smartphone operating systems.
+
+### Maps
+
+* openstreetmap.org
+* geo.admin.ch
+
+### Internet Videos
+
+* invidio.us
+* youtube-dl
+* NewPipe
+* PeerTube
+
+### Video/Voice chat
+
+* Jitsi
+* Mumble
+
+### Office Applications
+
+* LibreOffice
+* Openoffice
+
+### Operating System
+
+* GNU/Linux
+* BSD
+* TempleOS (Networking is of the devil anyways)
+
+# Discussion
+
+## Discussion
+
+### Discuss with others
+
+* What are you doing to protect your privacy?
+* Where could you protect your privacy more?
+* Have you found any interesting alternatives for "spyware"?
+* Which "spyware" are you still using and would like to replace?
+
+*please leave some feedback under: feedback.thealternative.ch/privacy*
+
+### Course material
+* These slides: \
+    \soft{http://thealternative.ch}
+
+<!-- -->
+
+* \soft{Theme by} Christian Horea, [CC BY](https://creativecommons.org/licenses/by/4.0/)
+* \soft{Original Presentation by} Noah Marti
diff --git a/privacy/pres.pdf b/privacy/pres.pdf
index 54b4209f9a6f5a5c11eed227346a98bb42468f90..b9ad494230c715a459776268da159b2fbb643867 100644
Binary files a/privacy/pres.pdf and b/privacy/pres.pdf differ
diff --git a/privacy/pres2.pdf b/privacy/pres2.pdf
deleted file mode 100644
index f306c390e93c9ae980a430977efed8848b7ac5a2..0000000000000000000000000000000000000000
--- a/privacy/pres2.pdf
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:cc185b79312a7c0a4617c245470f7d2b540baacb6f007065fa77975cfd7c6057
-size 2325209
diff --git a/privacy/presswap b/privacy/presswap
new file mode 100644
index 0000000000000000000000000000000000000000..3bd0daf8f7ed5ef9ae3c6f05b9030404cae531a9
Binary files /dev/null and b/privacy/presswap differ
diff --git a/privacy/scripts/example b/privacy/scripts/example
new file mode 100644
index 0000000000000000000000000000000000000000..c9320d232395be87726c25273a66a49302c3621c
--- /dev/null
+++ b/privacy/scripts/example
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+echo Hello World
+
+echo Bash is awesome
+
+# Now some fun stuff:
+sudo zypper update
+notify-send "Update complete"
+feh --bg-fill "pictures/fancy_wallpaper.jpg"
+youtube-dl -o "Video.%(ext)s" "https://www.youtube.com/watch?v=lAIGb1lfpBw"
+
diff --git a/privacy/template.tex b/privacy/template.tex
new file mode 100644
index 0000000000000000000000000000000000000000..bb4ac0711f1bc5064bc73ad793c7ed468f0529c3
--- /dev/null
+++ b/privacy/template.tex
@@ -0,0 +1,188 @@
+\documentclass[aspectratio=169,12pt]{beamer}
+\usepackage{lmodern}
+\usepackage[T1]{fontenc} %pipes don't display properly without this
+\usepackage[utf8]{inputenc}
+\usepackage{listings}
+\usepackage{color}
+\usepackage{datapie}
+\usepackage{multicol}
+\usepackage{siunitx} %pretty measurement unit rendering
+\usepackage{hyperref} %enable hyperlink for urls
+\usepackage{caption} % needed to tweak caption size
+
+\newcommand{\passthrough}[1]{#1}
+
+\usefonttheme[onlymath]{serif}
+\setcounter{MaxMatrixCols}{20}
+
+\DeclareSIUnit\pixel{px}
+
+\usecolortheme[RGB={37,68,113}]{structure}
+\usetheme{Dresden}
+
+\newenvironment{figurehere}
+{\def\@captype{figure}}
+{}
+\makeatother
+
+%commands to exclude sections from miniframes
+\makeatletter
+\let\beamer@writeslidentry@miniframeson=\beamer@writeslidentry
+\def\beamer@writeslidentry@miniframesoff{%
+   	\expandafter\beamer@ifempty\expandafter{\beamer@framestartpage}{}% does not happen normally
+   	{%else
+   		% removed \addtocontents commands
+   		\clearpage\beamer@notesactions%
+   	}
+}
+\newcommand*{\miniframeson}{\let\beamer@writeslidentry=\beamer@writeslidentry@miniframeson}
+\newcommand*{\miniframesoff}{\let\beamer@writeslidentry=\beamer@writeslidentry@miniframesoff}
+\beamer@compresstrue
+\makeatother
+
+
+\providecommand{\tightlist}{%
+  \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
+
+
+%various gray colors
+\definecolor{slg}{gray}{0.25}
+\definecolor{lg}{gray}{0.55}
+\definecolor{vlg}{gray}{0.73}
+\definecolor{tlg}{gray}{0.9}
+
+%TheAlt colors
+\definecolor{ldorange}{HTML}{F18A20}
+\colorlet{ldbright}{ldorange!70!white} % tinted version of orange, used in miniframes
+\definecolor{ldblue}{HTML}{254471}
+
+%%Theme colors
+%\definecolor{thgreen}{HTML}{A1A92C}
+%\definecolor{thmauve}{HTML}{97284D}
+
+%Theme colors
+\definecolor{thgreen}{HTML}{539727}
+\definecolor{thmauve}{HTML}{572272}
+
+%reduce caption font size:
+\captionsetup{font={scriptsize,color=lg}}
+
+%do not prepend numbering/lettering to figures/subfigures
+\captionsetup{labelformat=empty} %do not prepend letters to figure captions
+
+%Apply TheAlt colors to theme
+ % section titles in top navigation bar
+\setbeamercolor{section in head/foot}{parent=palette tertiary,fg=ldorange}
+\setbeamertemplate{section in head/foot shaded}{\color{ldbright}\usebeamertemplate{section in head/foot}}
+ % miniframes (little navigation circles)
+\setbeamercolor*{mini frame}{fg=ldorange,bg=ldbright}
+\setbeamertemplate{mini frame in other section}[default][0]
+\setbeamertemplate{mini frame in other subsection}[default][0]
+ % others
+\setbeamercolor{author in head/foot}{fg=white}
+\setbeamercolor{subsection in head/foot}{fg=white}
+\setbeamercolor{caption name}{fg=vlg}
+\setbeamercolor{caption}{fg=vlg}
+\setbeamercolor{frametitle}{fg=ldblue}
+
+\setbeamertemplate{caption}{\raggedright\insertcaption\par}
+\setbeamertemplate{navigation symbols}{}
+\setbeamertemplate{bibliography item}[text]
+
+\definecolor{mygreen}{rgb}{0,0.6,0}
+\definecolor{mygray}{rgb}{0.5,0.5,0.5}
+\definecolor{mymauve}{rgb}{0.58,0,0.82}
+
+\lstdefinestyle{custombash}{
+	belowcaptionskip=1\baselineskip,
+	captionpos=,
+	breaklines=true,
+	frame=L,
+	xleftmargin=\parindent,
+	language=bash,
+    morestring=[b]',
+    morekeywords=[2]{sudo,zypper,notify-send,feh,youtube-dl,sort,tee,head,tail,shuf,mpv,find,convert,xrandr,curl,wget,grep,xdotool,rm,cp,mv,touch,bash,chmod,mkdir,rsync,mplayer,mpv,xdotool,jshon},
+	showstringspaces=false,
+	basicstyle=\scriptsize\ttfamily,
+	rulecolor=\color{tlg},
+	backgroundcolor=\color{tlg},
+	fillcolor=\color{tlg},
+	rulesepcolor=\color{tlg},
+	commentstyle=\itshape\color{thmauve!60!black},
+    keywordstyle=\bfseries\color{thgreen},
+    identifierstyle=\color{ldblue},
+    stringstyle=\color{thmauve}
+}
+
+\lstset{
+    style=custombash,
+    caption={Descriptive Caption Text},
+    label=DescriptiveLabel
+}
+
+$if(title)$
+\title{$title$}
+$endif$
+$if(subtitle)$
+\subtitle{$subtitle$}
+$endif$
+$if(author)$
+\author{$for(author)$$author$$sep$ \and $endfor$}
+$endif$
+
+\institute{\includegraphics[width=0.35\textwidth]{img/logo_blue.pdf}}
+\date{$date$}
+
+\renewcommand{\emph}[1]{\textcolor{ldorange}{#1}}
+\let\oldtextbf\textbf
+\renewcommand{\textbf}[1]{\textcolor{ldorange}{\oldtextbf{#1}}}
+\newcommand{\soft}[1]{\textcolor{lg}{#1}}
+\newcommand{\textt}[1]{\textcolor{blue}{\texttt{#1}}}
+\newcommand{\bigtext}[1]{\centering\Huge \textbf{\textcolor{ldorange}{#1}}\normalsize}
+
+%shortcut to insert small logo in footline
+\def\logo{%
+	\resizebox{!}{3ex}{\includegraphics{img/logo_white.pdf}}
+}
+
+% Define a custom footline that includes our logo
+\setbeamertemplate{footline}
+{%
+	\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,%
+		leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}
+		\usebeamerfont{title in head/foot}%
+		\insertshorttitle\hfill\insertframenumber
+	\end{beamercolorbox}
+	\begin{beamercolorbox}[wd=\paperwidth,ht=3.5ex,dp=1.625ex,%
+		leftskip=.3cm,rightskip=.3cm plus1fil]{author in head/foot}
+		\usebeamerfont{author in head/foot}
+		\raisebox{0.5ex}{\insertshortauthor}\hfill\raisebox{-0.5ex}{\logo}
+	\end{beamercolorbox}
+}
+
+\begin{document}
+
+$if(title)$
+\frame{\titlepage}
+$endif$
+
+$for(include-before)$
+$include-before$
+
+$endfor$
+
+$if(toc)$
+\begin{frame}
+\tableofcontents[hideallsubsections]
+\end{frame}
+
+$endif$
+
+$body$
+
+$for(include-after)$
+$include-after$
+
+$endfor$
+
+\end{document}