Expected directory structure for getting utility scripts properly sourced:
.
├── install_obsidian_community_plugins.sh
├── install_obsidian_themes.sh
└── utils
├── check_has_commands.sh
└── print.sh
############################################################################### | |
# Author: ddnomad | |
# Version: 1.1.3 | |
# Last Update: 2020-07-06 | |
# | |
# External contributors: | |
# - u/momasf (https://www.reddit.com/user/momasf) - an excellent | |
# tip to use 'reflector' to speed up downloads during the base | |
# installation | |
# - eXhumer (https://github.com/eXhumer) - Fixes for things that |
#!/usr/bin/env bash | |
set -euo pipefail | |
readonly DISK_TEMP_RE='.*\s([0-9]+ \(Min/Max [0-9]+/[0-9]+\))' | |
readonly ZPOOL_RE='^\s+NAME\s+STATE\s+.*$\n\s+(\w+)\s+ONLINE.*$\n.*\n(^\s+(\w+)\s+ONLINE.*$\n)+^$' | |
readonly SMARTCTL_CMD=/opt/csw/sbin/smartctl | |
readonly TABLE_FORMAT='%-10s %-20s %-8s %-25s\n' | |
readonly HIGH_TEMP_THRESH=41 | |
readonly CRIT_TEMP_THRESH=50 |
#!/usr/bin/env bash | |
set -euo pipefail | |
readonly LIBRE_OFFICE_EXEC=/Applications/LibreOffice.app/Contents/MacOS/soffice | |
function main { | |
if test "$(uname)" != 'Darwin'; then | |
echo "[X] This script is compatible only with MacOS" | |
exit 1 | |
fi |
#!/usr/bin/env bash | |
# Download official Ghibli wallpapers for a given movie from their website. | |
# https://soranews24.com/2020/09/20/studio-ghibli-releases-400-images-from-eight-movies-free-to-download-online/ | |
# | |
# Movie names: | |
# - marnie (When Marnie Was There) | |
# - kaguyahime (The Tale of The Princess Kaguya) | |
# - kazetachinu (The Wind Rises) | |
# - kokurikozaka (From Up on Poppy Hill) | |
# - karigurashi (Arrietty) |
#!/usr/bin/env bash | |
set -euo pipefail | |
# NOTE: Based on this: https://github.com/NoLooseEnds/Scripts/blob/master/R710-IPMI-TEMP/R710-IPMITemp.sh | |
# NOTE: Read more: https://www.spxlabs.com/blog/2019/3/16/silence-your-dell-poweredge-server | |
readonly IPMI_HOST=127.0.0.1 | |
readonly IPMI_USER=root | |
readonly IPMI_PASSWORD=calvin | |
readonly IPMI_ENCRYPTION_KEY=0000000000000000000000000000000000000000 |
[ | |
{ | |
"ProviderGUID": "72d164bf-fd64-4b2b-87a0-62dbcec9ae2a", | |
"ProviderName": "AccEventTool", | |
"ProviderGroupGUID": "4f50731a-89cf-4782-b3e0-dce8c90476ba", | |
"AssociatedFilenames": [ | |
"accevent.exe", | |
"inspect.exe", | |
"narrator.exe", | |
"srh.dll" |
Expected directory structure for getting utility scripts properly sourced:
.
├── install_obsidian_community_plugins.sh
├── install_obsidian_themes.sh
└── utils
├── check_has_commands.sh
└── print.sh