This file contains 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
// ==UserScript== | |
// @name Fortnitify | |
// @version 1.0 | |
// @description Replaces every single F to the Fortnite F | |
// @author leap123 | |
// @match *://*/* | |
// @connect * | |
// @grant GM_xmlhttpRequest | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains 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 | |
## This script made to change your password with TUI dialog | |
## Original script made by NixCraft | |
## https://bash.cyberciti.biz/guide/A_password_box | |
# password storage | |
new=$(tempfile 2>/dev/null) | |
# trap it | |
trap "rm -f $new" 0 1 2 5 15 |
This file contains 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 | |
## This script made to change your password with TUI dialog | |
## Original script made by NixCraft | |
## https://bash.cyberciti.biz/guide/A_password_box | |
# password storage | |
if [[ "$EUID" -ne 0 ]]; then | |
old=$(tempfile 2>/dev/null) | |
fi | |
new=$(tempfile 2>/dev/null) |