install_nerd_fonts.sh is a Bash script that allows you to interactively select and install Nerd Fonts on macOS using Homebrew and fzf.
- Uses fzf for an interactive font selection.
- Installs selected Nerd Fonts via Homebrew.
| # Each distribution default Bash prompts | |
| # Gentoo (/etc/bash/bashrc) | |
| if [[ ${EUID} == 0 ]] ; then | |
| PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] ' | |
| else | |
| PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] ' | |
| fi | 
Ref.: https://man.archlinux.org/man/nmcli-examples.7.en
cat << EOF |sudo tee /etc/NetworkManager/dispatcher.d/wifi-ether.sh
#!/bin/bash
export LC_ALL=C
enable_disable_wifi ()Social login is the fastest way to engage users. And luckily firebase has done the hard work for us. In this post we will configure google login in no time!
1.1.1: Head to firebase and open your project
| .login-form-flex { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100%; | |
| } | |
| .button-flex-container { | |
| display: flex; | |
| width: 100%; | 
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| sudo dnf update -y | |
| sudo dnf install -y vim bash-completion epel-release | |
| sudo dnf repolist | |
| if [ ! -f /usr/local/bin/zellij ]; | |
| then | |
| wget -q https://github.com/zellij-org/zellij/releases/latest/download/zellij-x86_64-unknown-linux-musl.tar.gz -O /tmp/zellij.tar.gz | |
| sudo tar -xzvf /tmp/zellij.tar.gz -C /usr/local/bin/ | |
| sudo chmod 755 /usr/local/bin/zellij | 
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| dnf update -y | |
| dnf install -y vim bash-completion epel-release | |
| dnf repolist | |
| wget -q https://github.com/zellij-org/zellij/releases/latest/download/zellij-x86_64-unknown-linux-musl.tar.gz -O /tmp/zellij.tar.gz | |
| sudo tar -xzvf /tmp/zellij.tar.gz -C /usr/local/bin/ | 
| SetEnvIf X-Forwarded-Proto "https" HTTPS=on | |
| Header append Vary: X-Forwarded-Proto | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine on | |
| RewriteCond %{HTTPS} !=on | |
| RewriteCond %{HTTP:X-Forwarded-Proto} !https [NC] | |
| RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | |
| </IfModule> |