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
rm -rf .gnome .gnome2 .gconf .gconfd .metacity .cache .dbus .dmrc .mission-control .thumbnails ~/.config/dconf/user ~./compiz* |
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
# needs https://github.com/cykerway/complete-alias | |
# wget https://raw.githubusercontent.com/cykerway/complete-alias/master/complete_alias -O ~/.complete-alias | |
# add to bashrc | |
# echo "source ~/.aktentasche_aliases" >> ~/.bashrc | |
# download this gist | |
# wget https://gist.githubusercontent.com/aktentasche/1acda6799eced275483c4c8972ec5bec/raw/adf03d47dd4de833a074ab1b3f3b2f9a93dc18e8/gistfile1.txt -O ~/.aktentasche_aliases | |
source ~/.complete-alias |
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
echo " | |
\" Enable type file detection. Vim will be able to try to detect the type of file in use. | |
filetype on | |
\" Enable plugins and load plugin for the detected file type. | |
filetype plugin on | |
\" Load an indent file for the detected file type. | |
filetype indent on |
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
# this helps with a broken display or touch on an android phone | |
# the phone needs to be rooted and adb installed | |
# boot into recovery mode and type | |
adb shell setprop persist.service.adb.enable 1 | |
adb shell setprop persist.service.debuggable 1 | |
adb shell setprop persist.sys.usb.config mtp,adb | |
# then copy adb key so the accept fingerprint dialog is skipped | |
cd ~/.android |
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
manjaro live boot | |
connect to internet | |
sudo pacman -Sy --needed rp-pppoe wireshark-qt | |
sudo gpasswd -a $USER wireshark | |
# find ethernet interface e.g. eno1 or eth0 | |
ip a |
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
// ==UserScript== | |
// @name Webseitentext runterladen | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Download only human-readable text from any webpage as a TXT file | |
// @author You | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |