Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji | 
|---|---|
| Initial commit | 🎉 :tada: | 
| Version tag | 🔖 :bookmark: | 
| New feature | ✨ :sparkles: | 
| Bugfix | 🐛 :bug: | 
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji | 
|---|---|
| Initial commit | 🎉 :tada: | 
| Version tag | 🔖 :bookmark: | 
| New feature | ✨ :sparkles: | 
| Bugfix | 🐛 :bug: | 
| #!/bin/bash | |
| function package-version { | |
| apt-cache policy $1 | grep Installed | awk -F ' ' '{print $2}' | |
| } | |
| function kernel-current-version { | |
| major=$(uname -r | awk -F '.' '{print $1}') | |
| minor=$(uname -r | awk -F '.' '{print $2}') | |
| if [ $(uname -r | grep rc) ]; then | |
| rc="rc$(uname -r | awk -F '-' '{print $2}' | awk -F 'rc' '{print $2}')" | 
| #!/bin/bash | |
| # This script requires YAD to be installed | |
| # Input New Values | |
| if [ "$1" == "-gui" ]; then | |
| ## YAD Input Form | |
| YADInput=$(yad --form \ | |
| --title="PulseAudio Configurator" \ | |
| --separator="," \ | |
| --field="Sample Rate:CB" "22050\!44100\!48000\!96000" \ | |
| --field="Sample Format:CB" "s16ne\!s24ne\!s32ne\!float32ne" \ | 
| #!/bin/bash | |
| cd /tmp | |
| if ! which lynx > /dev/null; then sudo apt-get install lynx -y; fi | |
| if [ "$(getconf LONG_BIT)" == "64" ]; then arch=amd64; else arch=i386; fi | |
| function download() { | |
| wget $(lynx -dump -listonly -dont-wrap-pre $kernelURL | grep "$1" | grep "$2" | grep "$arch" | cut -d ' ' -f 4) | |
| } | 
| #!/bin/bash | |
| # Ubuntu 13.10 and 14.04 should work perfectly with this script. | |
| # PPAS | |
| ## Essentials | |
| sudo add-apt-repository -y "deb http://archive.canonical.com $(lsb_release -sc) partner" | |
| sudo add-apt-repository -y ppa:mc3man/mpv-tests # MPV (ffmpeg version) | |
| sudo add-apt-repository -y ppa:atareao/nautilus-extensions # Nautilus Image Extensions | |
| sudo add-apt-repository -y ppa:ubuntu-wine/ppa # Updated Wine Packages from Wine Developers | |
| sudo add-apt-repository -y ppa:webupd8team/y-ppa-manager # Namely for YAD |