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/env bash | |
# ===================== | |
# Colorized logging | |
# ===================== | |
RED="\e[31m" | |
YELLOW="\e[33m" | |
GREEN="\e[32m" | |
BLUE="\e[34m" | |
GRAY="\e[90m" |
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/env bash | |
################### | |
# ABOUT # | |
################### | |
# This script performs cleanup tasks for Docker. | |
# You can run it manually or schedule it as a cron job | |
# to periodically remove unused Docker resources. | |
# NOTE: this removes buildcache too. |
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/env sh | |
# Small script to detect and set the best resolution and refresh rate | |
# on wayland using wlr-randr. | |
RED="\e[31m" | |
YELLOW="\e[33m" | |
GREEN="\e[32m" | |
BLUE="\e[34m" | |
RESET="\e[0m" |