mirror of
https://github.com/tcsenpai/powertux.git
synced 2025-06-06 19:25:23 +00:00
14 lines
506 B
Bash
Executable File
14 lines
506 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Requirements:
|
|
# macchanger [ on Ubuntu: sudo apt-get install macchanger | dnf and pacman -S works too ]
|
|
WIFICARD="wlp2s0"
|
|
echo "MAC Address for WiFi card: $(ip link show $WIFICARD | grep link)"
|
|
# Downing the WiFi card
|
|
sudo ip link set $WIFICARD down
|
|
# Do the magic
|
|
sudo macchanger -r $WIFICARD
|
|
# Upping the WiFi card
|
|
sudo ip link set $WIFICARD up
|
|
echo "MAC Address for WiFi card: $(ip link show $WIFICARD | grep link)"
|
|
echo "..:: G O O D L U C K I A M B E H I N D 7 P R O X I E S ::.." |