12/09/2013, 12:23 AM
12/09/2013, 04:25 PM
Yo, I heard you liek games, so I made a game which looks like a virus, but when you click on it nothing happens.
Because no-one uses the Win98 style single click action and you need to actually double-click it to run it.
Because no-one uses the Win98 style single click action and you need to actually double-click it to run it.
12/09/2013, 05:07 PM
ZiNgA BuRgA Wrote: [ -> ]Yo, I heard you liek games, so I made a game which looks like a virus, but when you click on it nothing happens.
Because no-one uses the Win98 style single click action and you need to actually double-click it to run it.
but why would you click twice when you can just click once?!!?!?!?!? D:
12/09/2013, 06:07 PM
I am the virus, and I am the game.
I am here for obvious reasons.
*Simple humour for dummies*
I am here for obvious reasons.
*Simple humour for dummies*
12/09/2013, 06:17 PM
xD it does do single click and double
12/09/2013, 07:49 PM
mods lock thread please
12/09/2013, 11:32 PM
Heartless141 Wrote: [ -> ]Why would you opt to use the noob mode?ZiNgA BuRgA Wrote: [ -> ]Yo, I heard you liek games, so I made a game which looks like a virus, but when you click on it nothing happens.
Because no-one uses the Win98 style single click action and you need to actually double-click it to run it.
but why would you click twice when you can just click once?!!?!?!?!? D:
I dunno, I'm just pro, so I chose the pro option.
![[Image: PlkwjWS.png]](http://i.imgur.com/PlkwjWS.png)
13/09/2013, 12:21 AM
#!/bin/bash
x=$(sudo ip link show dev enp9s0)
if [[ $x = *BROADCAST,MULTICAST,UP,LOWER_UP* ]]; then
sudo dhcpcd enp9s0
else
sudo /sbin/ip link set dev wlan0 up
sudo /usr/sbin/wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf
sudo /sbin/dhcpcd wlan0
fi
Connects to ethernet if it's connected, but wlan0 if it's not.
x=$(sudo ip link show dev enp9s0)
if [[ $x = *BROADCAST,MULTICAST,UP,LOWER_UP* ]]; then
sudo dhcpcd enp9s0
else
sudo /sbin/ip link set dev wlan0 up
sudo /usr/sbin/wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf
sudo /sbin/dhcpcd wlan0
fi
Connects to ethernet if it's connected, but wlan0 if it's not.