some addition scripts

This commit is contained in:
Sheppy
2016-11-05 00:32:24 +01:00
parent f69753cba2
commit 49ce940510
3 changed files with 20 additions and 0 deletions

9
other/deb_install.sh Normal file
View File

@@ -0,0 +1,9 @@
apt install build-essential libtool autoconf
apt install rxvt-unicode zsh xorg herbstluftwm
apt install git tig python3
apt install vim vim-nox vim-syntax-gtk
apt install tree tmux pulseaudio htop sudo ncdu
apt install iw wicd-curses
apt install iceweasel chromium libreoffice icedove
apt install kolourpain feh imagemagick
apt install kvm sleuthkit

4
other/modchange.sh Normal file
View File

@@ -0,0 +1,4 @@
rmmod usbhid
echo "removed"
modprobe usbhid quirks=0x1a2c:0x0027:0x20000000
echo "DONE"

7
other/sshcheck.sh Normal file
View File

@@ -0,0 +1,7 @@
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
SESSION_TYPE=remote/ssh
else
case $(ps -o comm= -p $PPID) in
sshd|*/sshd) SESSION_TYPE=remote/ssh;;
esac
fi