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 | |
gh repo clone powerline/fonts && cd ~/fonts && ./install.sh && cd && rm -rf fonts/ |
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 | |
### | |
# Microsoft Teams stopped recognizing external cameras for video input in macOS | |
# after version 1.3.00.18164. | |
# User greghiggins3 in Microsoft's forum posted a solution. | |
# The solution involves unsigning Microsoft Teams. | |
# This Bash script automates the unsigning in macOS | |
# for Teams version 1.3.00.28778 |
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 | |
### | |
# This bash script sets/unsets the http and https proxies for git | |
### | |
# get the scripts name for the usage message | |
_filename=$0 | |
# verbose mode deactivated |
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 | |
### | |
# This is a code example showing how to use getops to parse short options and a | |
# subcommand with short options of it's own. Based on Kevin Sookocheff's post: | |
# https://sookocheff.com/post/bash/parsing-bash-script-arguments-with-shopts/ | |
# | |
# Please feel free to use it and modify it as you see fit. Any questions and/or | |
# recommendations are more than welcome. | |
### |