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
defaults write com.apple.dock autohide-delay -int 0 | |
defaults write com.apple.dock autohide-time-modifier -float 0.4 | |
killall Dock |
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
# Update the perms & selinux context labels, so everything is as readable as before | |
chown root:root /system/etc/security/cacerts/* | |
chmod 644 /system/etc/security/cacerts/* | |
chcon u:object_r:system_file:s0 /system/etc/security/cacerts/* |
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/bash | |
workflow=$1 | |
limit=$2 | |
if [[ -z "$workflow" ]] | |
then | |
echo "Usage: $0 <workflow> [<limit>]" | |
exit 1 | |
fi |
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
col_success="$(tput setaf 10)" | |
col_failure="$(tput setaf 9)" | |
col_normal="$(tput sgr0)" | |
col_fade="$(tput setaf 15)" | |
function _prompt_() { | |
local code="$?" | |
if [ "$code" -ne 0 ]; | |
then |