Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
# ----------------------------------------------------- | |
# List of configured 'kitty.conf' options | |
# | |
# This File Only Shows The Set Options In 'kitty.conf' | |
# Which Makes It Easier To Know Which Options Are Configured | |
# | |
# This file is not a live/up-to-date list of set options, | |
# if an option was set and this file wasnt updated, | |
# the option will not show in this file until it is updated | |
# |
### figlet-tr help | |
funcname="figlet-tr" | |
figlettrhelp=" | |
TITLE: | |
$funcname [-h|--help] [string] | |
##: ============================================== | |
##: [ SSHD_CONFIG ] | |
##: ============================================== | |
##: Title: hardened-sshd_config | |
##: Path: /etc/ssh/sshd_config | |
##: Author: github.com/ConnerWill | |
##: Date: 2022-07-16 | |
##: | |
##: https://man.openbsd.org/sshd_config.5 | |
##: https://linux.die.net/man/5/sshd_config |
# Import the Chocolatey Profile that contains the necessary code to enable | |
# tab-completions to function for `choco`. | |
# Be aware that if you are missing these lines from your profile, tab completion | |
# for `choco` will not function. | |
# See https://ch0.co/tab-completion for details. | |
# Source https://docs.chocolatey.org/en-us/troubleshooting | |
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" | |
if (Test-Path($ChocolateyProfile)) { | |
Import-Module "$ChocolateyProfile" | |
} |
############################################################################# | |
############################################################################# | |
## ## | |
## Hide stdout and stderr with this code after your command ## | |
## ## | |
## > /dev/null 2>&1 ## | |
## ## | |
## EXAMPLE: ## | |
## ## | |
## This command will now show any output: ## |
{ | |
"Æ": { "codepoints": [198], "characters": "\u00C6" }, | |
"Æ": { "codepoints": [198], "characters": "\u00C6" }, | |
"&": { "codepoints": [38], "characters": "\u0026" }, | |
"&": { "codepoints": [38], "characters": "\u0026" }, | |
"Á": { "codepoints": [193], "characters": "\u00C1" }, | |
"Á": { "codepoints": [193], "characters": "\u00C1" }, | |
"Ă": { "codepoints": [258], "characters": "\u0102" }, | |
"Â": { "codepoints": [194], "characters": "\u00C2" }, | |
"Â": { "codepoints": [194], "characters": "\u00C2" }, |
#!/data/data/com.termux/files/usr/bin/bash | |
set -eu | |
# Setup TERMUX_APP_PACKAGE_MANAGER | |
source "/data/data/com.termux/files/usr/bin/termux-setup-package-manager" || exit 1 | |
show_help() { | |
local cache_size | |
local cache_dir="" | |
if [ "$TERMUX_APP_PACKAGE_MANAGER" = "apt" ]; then |
#!/bin/bash | |
##############################################################################: | |
##############################################################################: | |
##: | |
##: | |
####: DEFINE_CHAR_VARIABLES | |
##: {{{ DEFINE_CHAR_VARIABLES | |
_thin_line_sep="---------------------------------------------------" |