This file contains hidden or 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
| #!/usr/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| """Check the remaining days for the expiration of a domain's SSL certificate.""" | |
| from datetime import datetime | |
| import argparse | |
| import socket | |
| import ssl | |
| CA_CERTS = './cacert.pem' |
This file contains hidden or 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/sh | |
| echo 'Updating Oh-My-ZSH...' | |
| cd ~/.oh-my-zsh | |
| git pull | |
| echo '' | |
| echo 'Updating spaceship-prompt...' | |
| cd ~/.oh-my-zsh/custom/themes/spaceship-prompt | |
| git pull |
This file contains hidden or 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
| local wezterm = require 'wezterm' | |
| local config = wezterm.config_builder() | |
| config.initial_rows = 26 | |
| config.initial_cols = 100 | |
| config.window_background_opacity = 0.80 | |
| config.macos_window_background_blur = 10 | |
| config.font = wezterm.font { |
OlderNewer