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/sh | |
wget -O /dev/null http://speedtest.belwue.net/1G |
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
[Desktop Entry] | |
Type=Application | |
Exec=/usr/local/bin/wifi-fix.sh | |
Terminal=true | |
Name[de_DE]=wifi-fix.sh | |
Name=wifi-fix.sh | |
Comment[de_DE]= | |
Comment= | |
Icon=/usr/share/icons/LoginIcons/apps/48/view-refresh.svg |
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 | |
for ip in 192.168.77.{254..1} ; do | |
grep -oE "$ip" dhcpd.conf > /dev/null 2>&1 | |
if [ $? != 0 ] ; then | |
echo "$ip is free" | |
fi | |
done |
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 | |
#misha@mishap2:~$ pacman -Q smbclient | |
#smbclient 4.5.1-1 | |
#without "gamin" attempt to run "net" throws up "net: error while loading shared libraries: libfam.so.0: cannot open shared object file: No such file or directory". with gamin installed net seems to work. | |
sudo pacman -S gamin smbclient |
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
--- | |
- hosts: all | |
become: true | |
tasks: | |
- name: Check if there are Packages available to be installed/upgraded | |
command: /usr/lib/update-notifier/apt-check --package-names | |
register: packages | |
when: ansible_os_family == "Debian" | |
environment: | |
http_proxy: http://proxy:3142 |
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
gsettings set org.gnome.desktop.wm.preferences resize-with-right-button true | |
gsettings set org.gnome.desktop.wm.preferences mouse-button-modifier '<Alt>' |
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 | |
mac=ab:cd:ef:gh:ij:kl | |
i=0 | |
#until lspci -nnk | grep -q vfio-pci; do | |
#sleep 1 | |
#i=$((i+1)) | |
#echo -en "Warte auf vfio $i\r" | |
#done |
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 -y libxtst6:i386 libxrandr2:i386 libglib2.0-0:i386 libgtk2.0-0:i386 libpulse0:i386 libgdk-pixbuf2.0-0:i386 libcurl4-openssl-dev:i386 libopenal1:i386 libusb-1.0-0:i386 libdbus-glib-1-2:i386 libnm-glib4:i386 libnm-util2:i386 |
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
new folder on desktop, named: | |
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} |
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
########## | |
# Tweaked Win10 Initial Setup Script | |
# Primary Author: Disassembler <[email protected]> | |
# Modified by: alirobe <[email protected]> based on my personal preferences. | |
# Version: 2.10.1, 2017-11-25 | |
# Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
# Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
# Tweak difference: | |
# | |
# @alirobe's version is a subset focused on safely disabling telemetry, 'smart' features, and 3rd party bloat ... |