This file contains 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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
This file contains 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
#!/usr/bin/env bash | |
echo "|iconName=accessories-dictionary-symbolic" | |
echo "---" | |
echo "Headphones | iconName=audio-headphones-symbolic bash=~/System/samus/scripts/setup/audio/enable-headphones.sh terminal=false" | |
echo "Speakers | iconName=audio-speakers-symbolic bash=~/System/samus/scripts/setup/audio/enable-speakers.sh terminal=false" | |
echo "---" | |
echo "VPN Down | iconName=network-offline-symbolic bash='sudo openpyn -k' terminal=false" |
This file contains 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 | |
################################# | |
# Icon Dynamic Imports - BEGIN | |
################################# | |
echo "Building icons..." | |
# A reference of all the 2k+ icons that can be used here and a quick search for icons you're looking | |
# for can be found here: https://materialdesignicons.com/ |