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
" pathogen | |
" execute pathogen#infect() | |
version 7.2 | |
" disable vi compatibility | |
set nocompatible | |
" show special characters |
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 | |
# Script fuer inkrementelles Backup mit 30 taegigem Vollbackup | |
### Einstellungen ## | |
BACKUPDIR="home/user/p/test/backup" ## Pfad zum Backupverzeichnis | |
ROTATEDIR="home/user/p/test/backup/rotate" ## Pfad wo die Backups nach 30 Tagen konserviert werden | |
TIMESTAMP="timestamp.dat" ## Zeitstempel | |
SOURCE="home/user/p/test/mackdir" ## Verzeichnis(se) welche(s) gesichert werden soll(en) | |
DATUM="$(date +%d-%m-%Y)" ## Datumsformat einstellen | |
ZEIT="$(date +%H:%M)" ## Zeitformat einstellen |
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
# i3 move a workspace to another monitor (multi monitor setup) | |
mode "move_workspace" { | |
bindsym Up move workspace to output up | |
bindsym Down move workspace to output down | |
bindsym Left move workspace to output left | |
bindsym Up move workspace to output up | |
bindsym Escape mode "default" | |
} |