This file contains hidden or 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
# Configuration file for tmux >= 2.1 | |
# .tmux.conf gets automatically read if in user directory (~) | |
# use 256 colour terminal: | |
set -g default-terminal "screen-256color" | |
# enable mouse: | |
set -g mouse on | |
# Not needed in tmux 2.8? |
This file contains hidden or 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
sudo nmap -sP 192.168.0.0/24 | awk '/^Nmap/{ip=$NF}/B8:27:EB/{print ip}' |
This file contains hidden or 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
## One line per log entry with merge graph | |
## (--decorate is implicit for newer git versions?): | |
#git log --graph --oneline --decorate | |
## | | |
## Add --branches --remotes --tags --merges to see entries for all of the | |
## corresponding refs, not only commits (--all for all refs). | |
## Format output with --pretty=tformat:'<format>' | |
## Interesting placeholders for oneline <format>: |
This file contains hidden or 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
sudo apt-get install build-essential cmake kdebase-workspace-dev libqjson-dev git libqca2-dev | |
git clone git://anongit.kde.org/kdeconnect-kde | |
cd kdeconnect-kde | |
cmake -DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 -DCMAKE_INSTALL_PREFIX=$(kde4-config --prefix) ./ | |
make | |
sudo make install | |
qdbus org.kde.kded /kded loadModule kdeconnect | |
kbuildsycoca4 -noincremental |
This file contains hidden or 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 | |
wget "https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz" | |
tar -xf libevent-2.0.21-stable.tar.gz | |
cd libevent-2.0.21-stable | |
./configure | |
make | |
make verify | |
sudo make install |
NewerOlder