- Private fdroid repo with play store apps
- to authenticate succesfully follow this procedure and register an android id corresponding to your device with DummyDroid.
- [ ]Calendar and Contacts synchronization
- Install DAVdroid with fdroid.
- status: Radicale docker works flawlessy,
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
FROM alpine:3.8 | |
MAINTAINER Niccolò Izzo <[email protected]> | |
ARG version=0.11.2 | |
# Runtime dependencies | |
RUN apk --update add --no-cache lua-dev sqlite openssl libidn ca-certificates lua-dbi lua-expat lua-filesystem lua-sec lua-socket lua-lzlib | |
# Build dependencies | |
RUN apk --update add --virtual build-dependencies alpine-sdk lua-dev openssl openssl-dev libidn-dev build-base linux-headers luarocks && \ | |
wget https://prosody.im/downloads/source/prosody-$version.tar.gz && \ | |
tar xzf prosody-$version.tar.gz && \ |
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-option -g mouse on | |
# make scrolling with wheels work | |
bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'select-pane -t=; copy-mode -e; send-keys -M'" | |
bind -n WheelDownPane select-pane -t= \; send-keys -M | |
# Emulate scrolling by sending up and down keys if these commands are running in the pane | |
tmux_commands_with_legacy_scroll="nano less more man git" | |
bind-key -T root WheelUpPane \ |
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/sh | |
# apkdoublecheck.sh Verify an apk signature with a certificate extracted | |
# from a trusted apk | |
# By default the trusted apk must have a valid v1 and v2 signature | |
# while for the target app it is sufficient to have a valid v1 signature | |
if [ $# -eq 0 ] | |
then | |
echo "Usage: apkdoublecheck.sh <trusted_apk> <untrusted_apk>" |
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/sh | |
PULSE_USER=nico | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
function pa_remote { |
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/sh | |
# Record audio from browsers - requires sox, pulseaudio-utils | |
# Get audio stream index | |
INDEX=$(pacmd <<< "list-sink-inputs" | grep index | cut -d ':' -f 2) | |
pactl load-module module-null-sink sink_name=recordsink | |
pactl move-sink-input $INDEX recordsink | |
parec -d recordsink.monitor | sox -t raw -b 16 -e signed -c 2 -r 44100 - record.flac |