Merge branch 'master' of gitlab.cs.fau.de:ik15ydit/config

Conflicts:
	herbstluftwm/autostart
This commit is contained in:
Sheppy
2017-01-24 14:52:31 +01:00
10 changed files with 70 additions and 696 deletions

View File

@@ -1,3 +1,4 @@
ln -s ~/.config/vim/rc ~/.vimrc
ln -s ~/.config/zshrc ~/.zshrc
ln -s ~/.config/xconf/Xressources ~/.Xressources
ln -s ~/.config/xconf/.xsessionsrc ~/.xsessionrc

View File

@@ -1,8 +0,0 @@
import os
rc = open("zshrc",'w+')
old = open("zshrc_old",'r')
for line in old:
if line.startswith("LD_PRELOAD="):
line = "LD_PRELOAD='"+os.getcwd()+"/libcoloredstderr.so'\n"
rc.write(line)

View File

@@ -12,6 +12,8 @@ xsetroot -solid '#5A8E3A'
# reset
hc keyunbind --all
pkill dunst
pkill xautolock
#variables
Mod=Mod4 # Use the super key as the main modifier
@@ -27,6 +29,9 @@ fi
if [[ "$HOST" == "atlantislaptop" ]]; then
hc keybind XF86MonBrightnessUp spawn /bin/bash -c 'tee /sys/class/backlight/intel_backlight/brightness <<< "$(expr $(cat /sys/class/backlight/intel_backlight/brightness) + 5)"'
hc keybind XF86MonBrightnessDown spawn /bin/bash -c 'tee /sys/class/backlight/intel_backlight/brightness <<< "$(expr $(cat /sys/class/backlight/intel_backlight/brightness) - 5)"'
xautolock -time 15 -locker /home/ik15ydit/.config/i3lock/piclock.sh &
/usr/bin/dunst &
hc keybind $Mod-o spawn /bin/bash -c "systemctl hibernate"
fi
######### GENERAL SETUP #########
@@ -43,7 +48,7 @@ hc keybind $Mod-q close
#spawn shit
hc keybind $Mod-Return spawn urxvt
hc keybind $Mod-Shift-Return spawn xterm /bin/bash
hc keybind $Mod-i spawn iceweasel
hc keybind $Mod-i spawn urxvt -e nohup zsh -c "chromium &" #need to reliably use the zshconf chromium
if [[ $HOST =~ atlantis* ]]; then
hc keybind $Mod-l spawn i3lock -i ~/.config/i3lock/bg.png -t
else

View File

@@ -10,6 +10,7 @@ colordiff ;#colored diff
coreutils ;#many usefull tools
cron ;#execute tasks automaticly at certain times
cscope ;#find shit in big repros
dunst ;#notification deamon for notify-send
dzen2 ;#used for herbsluftclient panel
eclipse ;#java programming enviroment
enscript ;#used for pdf/ps stuff
@@ -43,8 +44,9 @@ katarakt ;#simple and performant pdfviewer
kolourpaint4 ;#simple pictureeditor
less ;#simple textview
libreoffice ;#documenteditor like open office
lm-sensors ;#CPU/GraKa (temperatur) sensors
nano ;#very simple to use consol-texteditor
ncdu ;#harddriveussage overview
ncdu ;#harddrive ussage overview
mpv ;#video/music player
openjdk-8-jdk ;#java
openssh-client ;#ssh
@@ -66,6 +68,7 @@ sudo ;#execute as root
tar ;#compressing/unpacking
tesseract-ocr ;#optical character/text recognition
texlive-full ;#tex (Achtung groß)
texmaker ;#tex gui
tig ;#git history
tmux ;#terminal multiplexer (multiple terminals within one)
traceroute ;#tracert/check route to host

16
other/wlan-rrze/active Normal file
View File

@@ -0,0 +1,16 @@
wpa
wpa-peap
wpa-psk
wpa2-leap
wpa2-peap
wep-hex
wep-passphrase
wep-shared
leap
ttls
eap
peap
peap-tkip
eap-tls
psu
eudoram

20
other/wlan-rrze/eudoram Normal file
View File

@@ -0,0 +1,20 @@
name = eduroam
author = wlan-support@rrze.fau.de
version = 1
require identity *Identity anonymous_identity *Anonymous_identity password *Password ca_cert *Path_to_CA_Cert
-----
ctrl_interface=/var/run/wpa_supplicant=/var/run/wpa_supplicant
network={
ssid="$_ESSID"
scan_ssid=$_SCAN
key_mgmt=WPA-EAP
pairwise=CCMP TKIP
group=CCMP
eap=TTLS
identity="$_IDENTITY"
anonymous_identity="$_ANONYMOUS_IDENTITY"
password="$_PASSWORD"
ca_cert="$_CA_CERT"
phase1="peaplabel=0"
phase2="auth=PAP"
}

View File

@@ -1,5 +0,0 @@
alias "w"="php /proj/ciptmp/av37umic/scripts/woist.php show"
alias "ww"="php /proj/ciptmp/av37umic/scripts/woist.php all"
alias "wa"="php /proj/ciptmp/av37umic/scripts/woist.php add"
alias "wd"="php /proj/ciptmp/av37umic/scripts/woist.php del"
alias "wl"="php /proj/ciptmp/av37umic/scripts/woist.php list"

View File

@@ -1,197 +0,0 @@
<?php
// Read config file
if(!file_exists(getenv('HOME') . '/.woistdb')) {
$config = array('known' => array());
} else {
$config = json_decode(file_get_contents(getenv('HOME') . '/.woistdb'), true);
}
if($argc == 1) {
echo 'Syntax: ' . $argv[0] . ' show' . PHP_EOL;
echo 'Syntax: ' . $argv[0] . ' all' . PHP_EOL;
echo 'Syntax: ' . $argv[0] . ' add <login> [nickname]' . PHP_EOL;
echo 'Syntax: ' . $argv[0] . ' del <login>' . PHP_EOL;
echo 'Syntax: ' . $argv[0] . ' list' . PHP_EOL;
exit(-1);
}
$mode = $argv[1];
function write_config($config) {
// Write config file
$fp = fopen(getenv('HOME') . '/.woistdb', 'w+');
if(!flock($fp, LOCK_EX)) {
echo 'Could not get file lock.';
exit(-1);
}
fwrite($fp, json_encode($config));
fclose($fp);
}
// Add new user to database
if($mode == 'add') {
if($argc != 3 && $argc != 4) {
echo 'Invalid number of arguments.';
exit(-1);
}
$login = $argv[2];
$nickname = null;
if($argc == 4) {
$nickname = $argv[3];
}
$config['known'][$login] = $nickname;
write_config($config);
exit(0);
}
// Remove user from database
if($mode == 'del') {
if($argc != 3) {
echo 'Invalid number of arguments.';
exit(-1);
}
$login = $argv[2];
unset($config['known'][$login]);
write_config($config);
exit(0);
}
// Show database
if($mode == 'list') {
if($argc != 2) {
echo 'Invalid number of arguments.';
exit(-1);
}
echo 'Database:' . PHP_EOL;
foreach($config['known'] as $login => $nickname) {
echo '- ' . $login . ': ' . $nickname . PHP_EOL;
}
exit(0);
}
function hostmatch($h, $p) {
if(preg_match('/^' . $p . '$/', $h)) return true;
return false;
}
function getCip($host) {
if(hostmatch($host, 'faui03i')
) return 'FSI-Zimmer';
if(hostmatch($host, 'faui00[a-y]')
|| hostmatch($host, 'faui02[a-y]')
|| hostmatch($host, 'faui0f[a-u]')
) return 'Cip 2';
if(hostmatch($host, 'faui0a[a-q]')
|| hostmatch($host, 'faui0b[a-l]')
) return 'BibCip';
if(hostmatch($host, 'faui0e[a-o]')
|| hostmatch($host, 'faui06[a-q]')
|| hostmatch($host, 'faui05[a-h]')
|| hostmatch($host, 'faui08[a-p]')
) return 'Cip 1';
if(hostmatch($host, 'faui09[a-j]')
|| hostmatch($host, 'faui01[a-r]')
) return 'WinCip';
if(hostmatch($host, 'faui0d[a-u]')
) return 'STFUcip';
if(hostmatch($host, 'faui0c[a-q]')
) return 'CIP4';
if(hostmatch($host, 'faui04[a-s]')
) return 'Huber-Cip';
return 'unknown';
}
function mkspace($num) {
$res = '';
for($i = 0; $i < $num; $i++) {
$res .= ' ';
}
return $res;
}
if($mode == 'show' || $mode == 'all') {
$showall = false;
if($mode == 'all') $showall = true;
$result = array();
$current_hostname = '';
$rows = file('/proj/ciptmp/av37umic/scripts/woist.txt');
if(!$rows) {
echo 'Error reading list.';
exit(-1);
}
foreach($rows as $r) {
if(preg_match('/^(faui0..)\./', $r, $matches)) {
$current_hostname = $matches[1];
continue;
}
if($r) {
preg_match('/^([^ ]+) \(([^,]+).+? (\d+)$/', $r, $matches);
if(!$matches) continue;
$login = $matches[1];
$name = $matches[2];
$idletime = $matches[3];
if(!$showall && !array_key_exists($login, $config['known'])) continue;
if($idletime < 900) {
$prefix = "\t";
$nickname = '';
if(array_key_exists($login, $config['known'])) {
$nickname = $config['known'][$login];
if($showall) {
$prefix = ' * ';
}
}
$result[getCip($current_hostname)][] = $prefix . $login . mkspace(12 - strlen($login)) . $nickname . mkspace(15 - strlen($nickname)) . $name . mkspace(30 - strlen($name)) . ' (' . $current_hostname . ')';
}
}
}
foreach($result as $cip => $a) {
echo $cip . PHP_EOL;
foreach($a as $r) {
echo $r . PHP_EOL;
}
}
exit(0);
}
echo 'Invalid mode!';
exit(-1);

View File

@@ -1,478 +0,0 @@
faui01.informatik.uni-erlangen.de (Host was never reached since 18h 40m 17s)
faui0sr0.informatik.uni-erlangen.de (Information on 1 users was last gathered 3s ago)
ircbox.informatik.uni-erlangen.de (Information on 1 users was last gathered 3s ago)
faui0fu.informatik.uni-erlangen.de (Information on 1 users was last gathered 3s ago)
faui0ft.informatik.uni-erlangen.de (Host was never reached since 32m 46s)
faui0fs.informatik.uni-erlangen.de (Host was never reached since 30m 33s)
faui0fr.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0fq.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0fp.informatik.uni-erlangen.de (Host was never reached since 30m 33s)
faui0fo.informatik.uni-erlangen.de (Host was never reached since 30m 33s)
faui0fn.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0fm.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0fl.informatik.uni-erlangen.de (Host was never reached since 30m 33s)
faui0fk.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0fj.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0fi.informatik.uni-erlangen.de (Host was never reached since 30m 33s)
faui0fh.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0fg.informatik.uni-erlangen.de (Host was never reached since 32m 47s)
faui0ff.informatik.uni-erlangen.de (Host was never reached since 30m 33s)
faui0fe.informatik.uni-erlangen.de (Host was never reached since 30m 33s)
faui0fd.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0fc.informatik.uni-erlangen.de (Information on 1 users was last gathered 4s ago)
he29heri (Simon Ruderich, CIP Admin) 18774
faui0fb.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0fa.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0eo.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0en.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0em.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0el.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0ek.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0ej.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0ei.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0eh.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0eg.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0ef.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0ee.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0ed.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0ec.informatik.uni-erlangen.de (Host was never reached since 31m 8s)
faui0eb.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0ea.informatik.uni-erlangen.de (Host was never reached since 32m 47s)
faui0du.informatik.uni-erlangen.de (Host was never reached since 33m 19s)
faui0dt.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0ds.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0dr.informatik.uni-erlangen.de (Information on 1 users was last gathered 5s ago)
us08eziz (Ninad Chandrakant Nerkar, CompEng 2011) 0
faui0dq.informatik.uni-erlangen.de (Host was never reached since 31m 42s)
faui0dp.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0do.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0dn.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0dm.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0dl.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0dk.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0dj.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0di.informatik.uni-erlangen.de (Host was never reached since 32m 47s)
faui0dh.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0dg.informatik.uni-erlangen.de (Host was never reached since 29m 58s)
faui0df.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0de.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0dd.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0dc.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0db.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0da.informatik.uni-erlangen.de (Host was never reached since 30m 34s)
faui0cq.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0cp.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0co.informatik.uni-erlangen.de (Information on 1 users was last gathered 6s ago)
faui0cn.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0cm.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0cl.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0ck.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0cj.informatik.uni-erlangen.de (Host was never reached since 29m 59s)
faui0ci.informatik.uni-erlangen.de (Host was never reached since 27m 26s)
faui0ch.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0cg.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0cf.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ce.informatik.uni-erlangen.de (Host was never reached since 32m 14s)
faui0cd.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0cc.informatik.uni-erlangen.de (Host was never reached since 29m 59s)
faui0cb.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ca.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0bl.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0bk.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0bj.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0bi.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0bh.informatik.uni-erlangen.de (Host was never reached since 10m 18s)
faui0bg.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0bf.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0be.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0bd.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0bc.informatik.uni-erlangen.de (Host was never reached since 30m 0s)
faui0bb.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ba.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0aq.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ap.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ao.informatik.uni-erlangen.de (Host was never reached since 30m 0s)
faui0an.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0am.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0al.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ak.informatik.uni-erlangen.de (Host was never reached since 30m 0s)
faui0aj.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ai.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ah.informatik.uni-erlangen.de (Host was never reached since 30m 0s)
faui0ag.informatik.uni-erlangen.de (Host was never reached since 32m 47s)
faui0af.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ae.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ad.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui0ac.informatik.uni-erlangen.de (Host was never reached since 30m 0s)
faui0ab.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui0aa.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui08p.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui08o.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui08n.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui08m.informatik.uni-erlangen.de (Host was never reached since 31m 42s)
faui08l.informatik.uni-erlangen.de (Information on 1 users was last gathered 8s ago)
oz81evik (Maximilian Eschenbacher, CIP 2011) 736
faui08k.informatik.uni-erlangen.de (Host was never reached since 32m 47s)
faui08j.informatik.uni-erlangen.de (Host was never reached since 32m 15s)
faui08i.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui08h.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui08g.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui08f.informatik.uni-erlangen.de (Host was never reached since 33m 19s)
faui08e.informatik.uni-erlangen.de (Host was never reached since 32m 15s)
faui08d.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui08c.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui08b.informatik.uni-erlangen.de (Host was never reached since 31m 9s)
faui08a.informatik.uni-erlangen.de (Host was never reached since 30m 35s)
faui06q.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06p.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06o.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06n.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06m.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06l.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06k.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06j.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06i.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06h.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06g.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06f.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06e.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06d.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06c.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06b.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui06a.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui05h.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui05g.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui05f.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui05e.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui05d.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui05c.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui05b.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui05a.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04s.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04r.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04q.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04p.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04o.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
ro79moco (Jakob Harlan, CIP 2016) 0
faui04n.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04m.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04l.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04k.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04j.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04i.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04h.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04g.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04f.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04e.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04d.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04c.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04b.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui04a.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03h.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03g.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03f.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03e.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
vu20wyli (Julian Brost, CIP Admin) 0
faui03d.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03c.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
sirrwebe (Rolf Weber, CIP Admin) 103967
faui03b.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
of82ecuq (Johannes Schilling, CIP Admin) 9218
faui03a.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03k.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03j.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03i.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
ax20yhum (Jonny Schaefer, CIP 2014) 0
faui03p.informatik.uni-erlangen.de (Host was never reached since 18h 40m 24s)
faui03o.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
ax20yhum (Jonny Schaefer, CIP 2014) 0
faui03n.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03m.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
faui03l.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
ik15ydit (Yannik Schmidt, CIP 2013) 0
faui02y.informatik.uni-erlangen.de (Host was never reached since 30m 36s)
faui02x.informatik.uni-erlangen.de (Host was never reached since 30m 36s)
faui02w.informatik.uni-erlangen.de (Host was never reached since 30m 36s)
faui02v.informatik.uni-erlangen.de (Host was never reached since 32m 15s)
faui02u.informatik.uni-erlangen.de (Host was never reached since 30m 36s)
faui02t.informatik.uni-erlangen.de (Host was never reached since 30m 1s)
faui02s.informatik.uni-erlangen.de (Information on 1 users was last gathered 9s ago)
yf63elyf (Anatoliy Cherepantsev, CIP 2015) 9224
faui02r.informatik.uni-erlangen.de (Host was never reached since 32m 15s)
faui02q.informatik.uni-erlangen.de (Host was never reached since 30m 36s)
faui02p.informatik.uni-erlangen.de (Host was never reached since 31m 10s)
faui02o.informatik.uni-erlangen.de (Host was never reached since 9h 13m 9s)
faui02n.informatik.uni-erlangen.de (Host was never reached since 31m 10s)
faui02m.informatik.uni-erlangen.de (Host was never reached since 30m 36s)
faui02l.informatik.uni-erlangen.de (Host was never reached since 30m 36s)
faui02k.informatik.uni-erlangen.de (Host was never reached since 31m 10s)
faui02j.informatik.uni-erlangen.de (Host was never reached since 31m 43s)
faui02i.informatik.uni-erlangen.de (Host was never reached since 30m 37s)
faui02h.informatik.uni-erlangen.de (Host was never reached since 31m 10s)
faui02g.informatik.uni-erlangen.de (Host was never reached since 30m 2s)
faui02f.informatik.uni-erlangen.de (Host was never reached since 32m 48s)
faui02e.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
he79cyly (Marco Klapper, CIP 2012) 19005
faui02d.informatik.uni-erlangen.de (Host was never reached since 30m 37s)
faui02c.informatik.uni-erlangen.de (Host was never reached since 31m 10s)
faui02b.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
ij95ugeh (Adarsh Bhandary Panambur, MedTech 2016) 0
faui02a.informatik.uni-erlangen.de (Host was never reached since 31m 10s)
faui00y.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00x.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00w.informatik.uni-erlangen.de (Host was never reached since 18h 40m 25s)
faui00v.informatik.uni-erlangen.de (Host was never reached since 18h 40m 25s)
faui00u.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00t.informatik.uni-erlangen.de (Host was never reached since 18h 40m 25s)
faui00s.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
ys66efot (Tom Kunze, CIP 2014) 0
faui00r.informatik.uni-erlangen.de (Host was never reached since 18h 40m 25s)
faui00q.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
in19ezej (Lisa Marie Dreier, CIP 2014) 0
faui00p.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00o.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00n.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00m.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00l.informatik.uni-erlangen.de (Host was never reached since 18h 40m 25s)
faui00k.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00j.informatik.uni-erlangen.de (Host was never reached since 18h 40m 25s)
faui00i.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00h.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00g.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00f.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00e.informatik.uni-erlangen.de (Host was never reached since 18h 40m 25s)
faui00d.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00c.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00b.informatik.uni-erlangen.de (Information on 1 users was last gathered 10s ago)
faui00a.informatik.uni-erlangen.de (Host was never reached since 6h 57m 52s)

29
zshrc
View File

@@ -65,6 +65,9 @@ alias mv='mv -i'
alias cp='cp -i'
alias ..='cd ..'
## Anti-LD-Preload Chromium Wrapper ##
alias chromium="export TMP_PRELD=$LD_PRELOAD && /bin/bash -c 'unset LD_PRELOAD && chromium' && export LD_PRELOAD=$TMP_PRELD"
## LOCKS ##
if [[ $HOST =~ atlantis* ]]; then
alias i3lock="i3lock --image=/home/ik15ydit/.config/i3lock/bg.png"
@@ -81,6 +84,8 @@ if [[ $HOST =~ atlantis* ]]; then
#alias gedit="gedit 2&>/dev/null &"
alias kpaint="kolourpaint 2&>/dev/null &"
alias telegram='ssh uni -t "/proj/ciptmp/ik15ydit/Zeug/Telegram/tg/bin/telegram-cli -k tg-server.pub"'
alias telegram-plain='ssh uni -t "/proj/ciptmp/ik15ydit/Zeug/Telegram/tg/bin/telegram-cli --disable-colors --disable-readline -k tg-server.pub"'
alias x='startx'
else
alias pcolor='for i in {0..255} ; do printf "\x1b[38;5;${i}mcolour${i} "; if [[ $(((($i+3)/6)*6)) -eq $(($i+3)) ]]; then echo; fi; done'
@@ -88,11 +93,24 @@ else
fi
alias "ipconf"="ip addr show"
## CONVERTING (cip has better defaults) ##
## General ##
if [[ $HOST =~ atlantis* ]]; then
alias -g jpg2png="echo 'use convert [file_in.jpg] [file_out.png]'"
alias mpc-curses='ncmpc --host 10.100.4.22'
alias wgplayer='ncmpc --host 10.100.4.22'
fi
## Pathing ##
CIP_MOUNTPOINT = "$HOME/moutpoints/cip"
FS_PREFIX=""
CIPTMP="/proj/ciptmp/$USER"
if [[ $HOST =~ atlantis* ]]; then
FS_PREFIX=$CIP_MOUNTPOINT
fi
alias ct="cd $FS_PREFIX$CIPTMP"
alias mpstubs="cd $FS_PREFIX$CIPTMP/reps/mpstubs/"
alias tutoren="cd $FS_PREFIX$CIPTMP/reps/tutorenShare"
## MARKINGBIRD ##
export PYTHONPATH=/local/python3-typing
if [[ $HOST == faui* ]]; then
@@ -109,8 +127,8 @@ alias irc="ssh ircbox.cs.fau.de -t 'command; tmux a'"
alias -g uni="faui06c.cs.fau.de"
alias cipkey="ssh-add ~/.ssh/ciplogin"
alias cipra="xpra start ssh:ik15ydit@faui00n.cs.fau.de:100 --start-child urxvt"
alias mountcip="sshfs ik15ydit@faui00n.cs.fau.de:/ -o idmap=user $HOME/cip/root/"
alias umountcip="fusermount -u $HOME/cip/root/"
alias mountcip="sshfs ik15ydit@faui00n.cs.fau.de:/ -o idmap=user $CIP_MOUNTPOINT"
alias umountcip="fusermount -u $CIP_MOUNTPOINT"
## DIRECT TO CONFIG ##
alias hlconf="vim ~/.config/herbstluftwm/autostart"
@@ -150,8 +168,8 @@ alias v="vim $1"
## LS ##
LS_COLORS=$LS_COLORS:'di=0;35:'; export LS_COLORS
alias la="ls -la --color=auto"
alias ll="ls -ll --color=auto"
alias la="ls -lAh --color=auto"
alias ll="ls -llh --color=auto"
alias ls="ls --color=auto"
alias l="ls -lh --color=auto"
@@ -181,4 +199,3 @@ fi
if [[ $HOST =~ faui* ]]; then
mesg n
fi
alias mpc-curses='ncmpc --host 10.100.4.22'