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/bash | |
# | |
# source: https://askubuntu.com/questions/1002349/install-a-program-automatically-with-terminal-which-has-menus | |
# dependencies: sudo imagemagick xvfb | |
# constants | |
SERVERNUM=99 | |
SCREENSHOT=status.png | |
CROSSWORKS_PID= | |
XVFB_PID= |
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/bash | |
# | |
# workaround for vmware-patches from arch git repository to work with debian. | |
# fixes by ukos-git | |
# License GPL | |
# | |
# arch git source (License GPL) | |
# https://aur.archlinux.org/packages/vmware-patch/ | |
# https://wiki.archlinux.org/index.php/Vmware | |
# |
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/bash | |
# | |
# script for downloading and installing | |
# https://github.com/mkubecek/vmware-host-modules | |
# | |
# License GPL | |
# | |
CWD=$(pwd) | |
VMWARE_VERSION="workstation-12.5.9" |
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/bash | |
check_wine() { | |
if ! wine --version | grep -e 'wine-2' | |
then | |
echo "consider installing wine-2.1" | |
apt-cache policy wine32 wine-development | |
exit 1 | |
fi | |
} |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
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/bash | |
#set -e | |
# script to connect to uni wuerzburg vpn | |
# https://www.rz.uni-wuerzburg.de/dienste/it_sicherheit/vpn/ | |
# | |
# cisco password found by Chunguang Liang | |
# http://drliang.blogspot.de/2013/02/how-to-connect-vpn-of-uni-wuerzburg-via.html | |
LOG_FILE="/var/local/log/vpn-uniwue.log" |
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
{ | |
"data": [ | |
{ | |
"x0": 0, | |
"dx": 1, | |
"y": [ | |
0, | |
1, | |
8, | |
27, |