I hereby claim:
- I am dzogrim on github.
- I am dzogrim (https://keybase.io/dzogrim) on keybase.
- I have a public key ASABEP5VljaJrfcyJcbNeFp0fft2IeBja78qxFn3E4EnXAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
## macOS 'Messages.app' attachments clean-up | |
## Main known media formats files will be moved to trash to save space | |
## Copyleft (C) 2018-2019 dzogrim | |
## dzogrim < dzogrim [@] dzogrim [.] pw > | |
#VERSION="1.0 (2018-04-07)" # initial | |
#VERSION="1.1 (2018-05-28)" # sort garbage |
#!/bin/bash | |
## macOS Display info for Mac computers | |
# Set cocoaDialog command since it is probably not in PATH | |
# Try `sudo port install -fc CocoaDialog` | |
# Or download binary application here: https://slack-files.com/T7HLMPFC2-F91NUPD5J-843dfef276 | |
cocoaDialog="/Applications/MacPorts/CocoaDialog.app/Contents/MacOS/CocoaDialog" | |
checkTools() |
#!/bin/bash | |
NAME=$(basename "$0") | |
# Customized colors | |
export cRST='\033[0m' \ | |
cRed='\033[31;1m' cDRed='\033[31m' cRedBG='\033[41;1m' cDRedBG='\033[41m' \ | |
cGreen='\033[32;1m' cDGreen='\033[32m' cGreenBG='\033[42;1m' cDGreenBG='\033[42m' \ | |
cBlue='\033[34;1m' cDBlue='\033[34m' cBlueBG='\033[44;1m' cDBlueBG='\033[44m' \ | |
cYellow='\033[33;1m' cDYellow='\033[33m' cYellowBG='\033[43;1m' cDYellowBG='\033[43m' \ |
#!/bin/bash | |
set -e | |
shopt -s extglob | |
## The tool was designed to easily spot difference between 2 Mac computers installed macOS applications. | |
## Copyleft (C) 2016-2019 dzogrim | |
## dzogrim < dzogrim [@] dzogrim [.] pw > | |
#VERSION="1.2 (2019-01-26)" | |
DropboxPath="Dropbox/Private/_SyncThat/confInfos" |
#!/usr/bin/python3 | |
# -*- coding: utf8 -*- | |
#-- Need installed `py37-setuptools` & `py37-pip` | |
import os, os.path | |
import re | |
import shutil | |
import sys | |
from collections import OrderedDict as ODict |
#!/bin/bash | |
## Copyleft (C) 2017 dzogrim | |
## dzogrim < dzogrim [@] dzogrim [.] pw > | |
#VERSION="1.0 (2017-08-20)" | |
#Delay="1.45" | |
Delay="1x8" #the animation should play a frame every 1/8 of a second |
#!/bin/bash | |
## This tool will de/activate macOS Desktop icons | |
##-- dzogrim < dzogrim [@] dzogrim [.] pw > | |
#VERSION="1.0 (2015-03-24)" | |
##-- * Activate or hide OS X Desktop (and icons) | |
# =============================================== | |
# Configuration |
#!/bin/bash | |
set -x -e | |
expectedCode=200 | |
log_file="/tmp/$(basename $0).log" | |
input_links="${HOME}/Documents/redirections.url.txt" | |
mycurl(){ | |
redirection="$1" |
#!/bin/bash | |
base_URL="https://objective-see.com/products.html" | |
dest_DIR="${HOME}/Downloads" | |
file_EXT="zip" | |
installers=(BlockBlock DoNotDisturb LuLu OverSight RansomWhere ReiKey WhatsYourSign) | |
[[ ! -d "${dest_DIR}" ]] && exit 1 | |
[[ ! "$( which curl )" ]] && exit 1 |