Skip to content

My own personal bash scripts that revolutionize my life!!

Notifications You must be signed in to change notification settings

hopeseekr/BashScripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HopeSeekr's Bash Scripts Collection

Utilities to ease your life.

Scripts that I use on a daily basis, or on new system installs, that improve my experience with Linux substantially!

Hope's Logo

They are sorted by how much utility they provide me.

Translations: 中文, हिन्दी

Recent Changes

v2.7.0 @ 2024-08-24

  • [2024-08-24 12:06:32 CDT] [bash-timer] Added the bash-timer project.

v2.6.1 @ 2024-08-23

  • [2024-08-23 07:09:10 CDT] [git-same-sig-time] Added proper support for time zones different than the user's computer.

v2.6.0 @ 2024-08-12

  • [2024-08-12] Majorly cleaned up the README and translated to Chinese, Hindi, and Spanissh.
  • [2024-08-12] [turn-off-monitors] Added full support for turning off monitors in Wayland for Gnome and KDE.
  • [2024-08-12] [arch-pacman-dupe-cleaner] Require superuser to run.
  • [2024-08-12] [gitconfig] Automatically time out git when websites are not reachable.
  • [2024-08-12] [bash_rc.aliases] Replace ssh with mosh, if it is installed.
  • [2024-08-12] [bash_rc.aliases] Added an alias to make watch honor ~/.bashrc aliases.
  • [2024-08-12] [framework/wait_until_mouse_or_keyboard_event] Block execution until a key is pressed, the mouse is moved, or a mouse button is clicked.
  • [2024-08-12] [framework/is_root] Added a function for determining root access.
  • [2024-08-12] [launch-browser] Launch Chrome-based browsers in native Wayland.
  • [2024-08-12] Added a .bash_profile.

Table of Contents (Categorized)

bash_profile

Ties many of the BashScripts together for a super powerful system.

bash_rc.aliases

This is arguably the most valuable piece of the project!

These dozens of aliases make working with Linux and developing web app software much more efficient and streamlined.

Go check it out! bash_rc.aliases

bash-timer

Easily add Human-readable execution time for every command in bash!

The time will show up in the bottom left, immediately left of your $PS1.

bash-timer image

2 days 05:02:11.33 # A very long process

To Install:

curl https://raw.githubusercontent.com/hopeseekr/bash-timer/v1.5.0/install | bash

View the README.md for more information.

ssh-autologin

Automatically sets up (if needed) a SSH private key and installs it on the remote server (creating the .ssh, if needed, as well.

ssh-keyphrase-only-once.installer

Properly configures your OpenSSH client and installs ssh-agent in your ~/.bash_profile in such a way that you will only ever have to enter your SSH keyphrase once per login for anything that works with ssh-agent.

gitconfig

A highly-optimized .gitconfig for seasoned software developers ready to increase their daly productivity. Install into ~/.gitconfig.

git pretty
git ll

Shows a beautiful multi-colored log with standard ISO dates:

git pretty

git fix

Quickly jumps into rebasing the last two commits into one another.

git alterego

Quickly switch the current repo to using your main alterego account for an previously-committed commit.

git ego

The reverse of git alterego.

git resign <hash>

Quickly resign bulk commits from to the latest.

This is particularly utilitarian when your GPG key expires and you need to renew it and then resign.

git c: checkout
git cp: cherry-pick
git cpm: cherry-pick for Merge commits

Utility aliases to make git more efficient to use.

git shows

Shows the GPG signature for every commit in git log.

git-change-author

Easily bulk change the author's name and email of any of the commits in a git repository.

Usage: git-change-author "Your Name" "email@address" [SHA1]

git-commit-at-modded-time

Use a file's modified time as the git time.

Example:

$ ls -l american-date
 #-rwxrwxr-x  1 1MB Oct 14  2020  american-date
$ ./git-commit-at-modded-time american-date
$ git pretty american-date
7462b66 G 2020-10-14 15:53:34 -0500 Theodore R. Smith

git-mtime Git Modified Time Restorer

Restores each file's modification time in your working directory to when it was last updated in the remote git repository.

When you checkout a repository & run this, your workdir goes from:

-rwxrwxr-x  1 tsmith users 1MB Oct 22 01:58 changelog-maker-lite*
-rw-rw-r--  1 tsmith users 1MB Oct 22 01:58 CHANGELOG.txt
-rw-rw-r--  1 tsmith users 1MB Oct 22 01:58 gitconfig
-rwxrwxr-x  1 tsmith users 1MB Oct 22 01:58 git-mtime

To:

-rwxrwxr-x  1 tsmith users 1MB Oct  1 08:38 changelog-maker-lite*
-rw-rw-r--  1 tsmith users 1MB Oct  1 01:10 gitconfig
-rwxrwxr-x  1 tsmith users 1MB Sep 30 23:19 git-mtime

git-same-sig-time

Unifies the GPG signature time with the commit's time.

Before:

 gpg: Signature made Fri 19 Jan 2024 06:50:44 AM CST
 gpg:                using RSA key 4BF826131C3487ACD28F2AD8EB24A91DD6125690
 gpg: Good signature from "Theodore R. Smith <[email protected]>" [ultimate]
 43578ec G 2024-01-16 01:52:41 -0600 Theodore R. Smith   [m] Updated the packages and exclusion lists. HEAD
 gpg: Signature made Fri 19 Jan 2024 06:50:25 AM CST
 gpg:                using RSA key 4BF826131C3487ACD28F2AD8EB24A91DD6125690
 gpg: Good signature from "Theodore R. Smith <[email protected]>" [ultimate]
 8ab4104 G 2024-01-15 08:27:07 -0600 Theodore R. Smith   Upgraded to PHP 8.3.

After:

 gpg: Signature made Tue 16 Jan 2024 01:52:41 AM CST
 gpg:                using RSA key 4BF826131C3487ACD28F2AD8EB24A91DD6125690
 gpg: Good signature from "Theodore R. Smith <[email protected]>" [ultimate]
 515e36b G 2024-01-16 01:52:41 -0600 Theodore R. Smith   [m] Updated the packages and exclusion lists. HEAD
 gpg: Signature made Mon 15 Jan 2024 08:27:07 AM CST
 gpg:                using RSA key 4BF826131C3487ACD28F2AD8EB24A91DD6125690
 gpg: Good signature from "Theodore R. Smith <[email protected]>" [ultimate]
 22c5040 G 2024-01-15 08:27:07 -0600 Theodore R. Smith   Upgraded to PHP 8.3.

tar-sorted

Create tar files automatically sorted by file name.

This is particularly helpful on random-order file systems, such as ext4.

With the Bettergist Collector, we use this to be able to roughly estimate how long compressing and extracting multiple-gigabyte files with millions of files will take.

It is a drop-in replacement for tar, and uses the same arguments.

Optionally, you can install the function directly into your ~/.bashrc.

cron.daily/00_clear-cache

  • Empties out the ~/.cache directory of every non-root user.
  • Empties out Pacman's package cache directory.

This can optionally use nullfsvfs in order to limit wear-and-tear on SSDs.

cron.daily/01_purge-locales

Removes every non-EN locale file every day.

This saves, usually, 400-1000 MB of space.

cron.hourly/btrfs-snapshot

Takes BTRFS snapshots of / every hour on the hour.

cron.daily/btrfs-snapshot

Cleans up the prior day's hourly snapshots while keeping the daily ones.

cron.hourly/php-clean-tmp

Cleans up otherwise-useless PHP temp files, which is very useful on busy servers.

  • Old session files that haven't been modified in the last hour.
  • phpunit temp files.
  • phpstan temp files.

american-date

A utility to print out dates in the American format

Fri, 19 January 2024 05:49:20 CST

changelog-maker-lite

Easily creates CHANGELOGs based upon concise git commit logs:

[2020-10-01 00:23:15 CDT] — [x265.sh] Use VAAPI for encoding using Intel graphics cards.
[2020-10-01 00:30:00 CDT] — Created a README.md.
[2020-10-01 00:37:07 CDT] — [random-file] renamed for more clarity.
[2020-10-01 00:44:34 CDT] — Flushed out the README.
[2020-10-01 00:49:44 CDT] — [bash_rc.aliases] Added a whole slew of webdev aliases.
[2020-10-01 00:58:00 CDT] — [bash_rc.aliases] Added some more descriptions.
[2020-10-01 01:10:26 CDT] — [.gitconfig] Added a whole bunch of my git aliases. tag: v1.0.0
[2020-10-01 08:17:42 CDT] — [clear-cache] Delete broken symlinks in the ~/.cache directories.

launch-browser

  1. It detects if the user is running Wayland. If so, for Chromium-based browsers, it will pass the flags necessary for it to run in native-Wayland (not XWayland) for superior performance.
  2. It will always launch using the Gnome Keychain, so that you won't lose all of your cookies and permanent logins every time you switch to KDE, and vice-versa.

ls-by-min

Returns a list of files sorted by file size, descending, that are at least X MB big.

random-file

Picks a random file in a directory / PWD.

stream-to-youtube

YouTube CLI Livestream Screencaster straight from the CLI (via ffmpeg)!

sudoers.d/00_prompt_once

This will make sudo only ask for your password ONE TIME during a single boot. It won't ask across terminals and it won't time out. On reboot, it will automatically expire.

sync-watch

Displays how many megabytes still need to be written to [slow] disks.

Every 5.0s: grep -e Dirty: -e Writeback: /proc/meminfo                                                    asus-z13: Fri Jan 19 07:09:32 2024

Dirty:            751552 kB
Writeback:             0 kB

turn-off-monitors

Easily turns off all of your monitors via the CLI.

For when you want to just step away and not worry so much about a lock screen.

wifi-autorun-on-connect.installer

Installs a NetworkManager script that atomatically runs when connected to specific # WiFi networks.

watermark.sh

Adds a watermark to videos via ffmpeg.

x265.sh

Transcodes to x265 HEVC via ffmpeg using Intel's graphics card.

Esoteric Utilities

esoteric/arch-pacman-dupe-cleaner

Aids in automagically repairing duplicate Pacman database entries in Arch Linux.

It's meant to resolve the rare problem: "error: duplicated database entry 'foo'"

esoteric/git-shallow-pull

Shallow updates a shallow git clone --depth 1 repository.

esoteric/init-btrfs-rootfs

In Arch Linux, a btrfs setup puts every single file in /. This greatly limits the ability to properly manage the system, with subvol=5 having nothing but subvolumes.

This script does the following:

  • Creates new root-level snapshots: @rootfs (/), @snapshots, @important, and @home.
  • Moves files / into /@rootfs, /home into /home and creates new /snaps and /important.
  • Creates /media/true-root that is auto-mounted to / (subvol=5).
  • Integrates with the cron.d auto-snapshot cronjobs in this project
    • / is snapshotted daily in `/snaps/daily/YYYY-MM-DD.
    • /important is snapshotted hourly in /snaps/important/YYYY-MM-DD/HH.
    • /important is set for compression-enabled.
    • Sets up /home to quota-enforced based on 10% of the total disk space per-user, and 50% of the total disk space for every user.
    • The /home snapshot is set for compression-enabled.
    • The /home has rolling 7-day snapshotting for user's .* files, except for cache directories (when using [cron.daily/00_clear-cache]).

The Problem

Arch Linux sticks all of / in the main BTRFS subvolume (ID=5).

This means that common snapshotting and subvolume tasks, particularly rolling back to a previously (e.g., working) root subvolume is exceptionally difficult and requires a rescue boot, etc.

The Solution

The provided solution hotfixes the situation, hopefully without the need for a rescue disk, on a live environment. However, you really ought to have a rescue disk prepped in avance.

And for the love of God, make backups first!

btrfs-init-rootfs

esoteric/clone-github-repos.php

Automagically downloads all of the GitHub repositories of a user or or an organization.

Bash Framework

is_root

When run standalone, it will echo either "Running as root" or "Not running as root".

When called as a function, it will return either true or false.

wait_until_mouse_or_keyboard_event

Blocks the executing program until a key is pressed, the mouse is moved, or a mouse button is pressed, anywhere, irregardless of window focus.

It will echo one of the following: KEYBOARD_KEY, MOUSE_CLICKED, or MOUSE_MOVED.

Can be run either standalone or as a function.

License

This project is licensed under the Creative Commons Attribution License v4.0 International.

CC.by License Summary

About The Author

Theodore R. Smith [email protected]
GPG Fingerprint: 4BF8 2613 1C34 87AC D28F 2AD8 EB24 A91D D612 5690
CEO: PHP Experts, Inc.