View novnc_show_local_cursor.patch
--- core/display.js.bak 2021-03-26 16:10:05.826957824 +0000 | |
+++ core/display.js 2021-03-26 16:10:41.667264310 +0000 | |
@@ -507,7 +507,7 @@ | |
}, | |
disableLocalCursor: function () { | |
- this._target.style.cursor = "none"; | |
+ // this._target.style.cursor = "none"; | |
}, | |
View answerfile
KEYMAPOPTS="us us" | |
HOSTNAMEOPTS="-n alpine" | |
INTERFACESOPTS="auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet dhcp | |
hostname alpine | |
" | |
TIMEZONEOPTS="-z UTC" |
View example.py
from signal import pause | |
from rich.console import Console | |
from google_login import * | |
console = Console() | |
console.log("Initializing ChromeOptions...") | |
options = webdriver.ChromeOptions() | |
options.headless = False |
View pip3-update.sh
#!/bin/bash | |
pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U |
View PasswordlessSudo.sh
#!/bin/bash | |
echo "$USER ALL=(ALL:ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/$USER |