- Move
systemd-email.sh
to/usr/local/bin/
assystemd-email
with permissions755
- Move
systemd-email.conf
to/usr/local/etc/systemd-email/
- Move
[email protected]
to/etc/systemd/system/
- Create public keyring for GnuPG in
/usr/local/etc/systemd-email/
withgpg --homedir /usr/local/etc/systemd-email/ --no-default-keyring --keyring pubring.gpg --fingerprint
and set the permissions onpubring.gpg
andtrustdb.gpg
accordingly or to644
- Import your public key with
gpg --homedir /usr/local/etc/systemd-email/ --import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
# Name of the mirror used for local directory names | |
mirror="${1}" | |
# Directory where the repo is stored locally. | |
target="/srv/ftp/${mirror}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Player</title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/plyr/3.7.2/plyr.min.css" integrity="sha512-1EV4ofS7XcLAlzTrHHfhk7UzxVEY8Qog2Jeve5UhGYrFm2BQylunV46RXUa5JJilEAmIAtIA2KbFxISjVmw+zg==" crossorigin="anonymous" referrerpolicy="no-referrer"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/shaka-player/4.2.1/controls.min.css" integrity="sha512-+8BR6lbGCJm021MhjZMszue47HrhbLww8rZqeelgkqAgTWsWvYe7m8/H7V9lUVrPDI18vxBTdJogoxVPBB3Qjg==" crossorigin="anonymous" referrerpolicy="no-referrer"> | |
<style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const c = document.getElementById("particles"); | |
const ctx = c.getContext("2d"); | |
const maxParticles = 100 * (1/Math.pow(window.devicePixelRatio, .75)); | |
const size = 2; | |
const r = size/2; | |
const cft = 1000/60; | |
let previous, stepratio; | |
let w, h, d; | |
resize(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
read -e -p "Source Directory [./]: " SOURCE | |
SOURCE=${SOURCE:-./} | |
read -e -p "Destination Directory [../Mirror]: " DEST | |
DEST=${DEST:-../Mirror} | |
if [ $# -eq 0 ] || [ -z $1 ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set cache dir | |
proxy_cache_path /var/cache/nginx levels=1:2 | |
keys_zone=microcache:5m max_size=1000m; | |
# Virtualhost/server configuration | |
server { | |
listen 443; | |
listen [::]:443; | |
server_name yourhost.domain.com; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
clear | |
function color (){ | |
echo "\e[$1m$2\e[0m" | |
} | |
function extend (){ | |
local str="$1" |
I hereby claim:
- I am sunred on github.
- I am sunred (https://keybase.io/sunred) on keybase.
- I have a public key ASAjfKZEoC-AK8gqyJpBbfMlaDuzNiOWwemQ1wtzECZ_Zgo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var channels = {}; | |
channels.required = [ | |
// Channels you will always lurk in (as long as the list is smaller than config.maxChannels) | |
]; | |
channels.pool = [ | |
// Channels of which you randomly lurk in whenever the channels get rerolled (config.rerollCronjob) | |
// These are used to fill the pool of channels up to the config.maxChannels value in case channels.required doesn't reach that value in size | |
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: SpennyTF | |
Contributor: SunRed | |
How to install: | |
Just put the file under | |
%appdata%/Mozilla/Firefox/Profiles/<YOURPROFILE>/chrome/userChrome.css | |
You might have to create the chrome folder. | |
*/ |
NewerOlder