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 | |
dir=$(dirname $0) | |
gconfdir=/apps/gnome-terminal/profiles | |
echo # This makes the prompts easier to follow (as do other random echos below) | |
######################## | |
### Select a profile ### | |
######################## |
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
#include <OpenVex.h> | |
#include "firmware.h" | |
#include "interrupts.h" | |
void resetHeartBeat(void); | |
unsigned char usartDataReady(void); | |
int usartGetChar(char * c); | |
unsigned char c = 0; |
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/sh | |
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# Remove duplicates and unwanted commands in the bash history | |
if [ "$SHLVL" = 1 ]; then |
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/sh | |
# .bash_aliases | |
# enable color support of ls and also add handy aliases | |
if [ -x /usr/bin/dircolors ]; then | |
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" | |
alias ls='ls --color=auto' | |
alias grep='grep --color=auto' | |
alias fgrep='fgrep --color=auto' | |
alias egrep='egrep --color=auto' |
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/sh | |
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# Remove duplicates and unwanted commands in the bash history | |
if [ "$SHLVL" = 1 ]; then |
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/sh | |
# .bash_aliases | |
alias la='ls -alh' | |
alias lal='ls -alh | less' | |
alias h='history' | |
#strips off current comment from history so it doesn't show up | |
alias hg='history | head -$((`history | wc -l` - 1)) | grep -i ' |
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/sh | |
# baseInstall | |
add-apt-repository -y ppa:yannubuntu/boot-repair | |
add-apt-repository -y ppa:danielrichter2007/grub-customizer | |
add-apt-repository -y ppa:weather-indicator-team/ppa | |
add-apt-repository -y ppa:hugin/hugin-builds | |
add-apt-repository -y ppa:tualatrix/ppa | |
apt-get update | |
apt-get install -y boot-repair | |
apt-get install -y grub-customizer |