See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| #!/bin/bash -eu | |
| # disable_verify.sh: Script to disable rootFS verification on Chrome OS Flex/CloudReady 96+ | |
| # | |
| # Usage: | |
| # curl -Ls 'https://gist.github.com/supechicken/ccf8bfad3be30dbcd144b46bc4d7083e/raw' | sudo bash -eu | |
| [[ "${EUID}" != 0 ]] && echo -e "\e[1;31m"'Please run this script as root.'"\e[0m" && exit 1 | |
| # get disk device name which has Chrome OS installed to | |
| cros_disk="$([[ "$(mount | grep '/mnt/stateful_partition')" =~ (sd[a-z]|nvme[0-9]n[0-9]p|mmcblk[0-9]p) ]] && \ |
| # See this wiki page for more info: | |
| # https://github.com/dylanaraps/neofetch/wiki/Customizing-Info | |
| print_info() { | |
| #info title | |
| #info underline | |
| info "OS\t\t" distro | |
| info "Host\t" model | |
| #info "Kernel" kernel | |
| info "Uptime\t" uptime |
| # Microsoft Authentication Scheme | |
| # https://wiki.vg/Microsoft_Authentication_Scheme | |
| # | |
| # DEV NOTE: Might switch to using xbox-webapi-python | |
| # instead later on. | |
| # https://github.com/OpenXbox/xbox-webapi-python | |
| import requests | |
| MS_OAUTH2_URL = "https://login.live.com/oauth20_authorize.srf" |
| #!/usr/bin/env bash | |
| curl http://www.subsonic.org/pages/api.jsp | \ | |
| grep -A 4 '<h3' | \ | |
| grep -e '<h3' -e Since | \ | |
| tail -n +6 | tr -d "\r\n" | \ | |
| sed -e $'s/<h3>/\\\n/g' | \ | |
| sed 's/<[^>]*>//g' | \ | |
| awk '{print $3, $1}' | \ | |
| sort -V > api-by-version.csv |
| :::: ffmpeg script for converting FLAC to ALAC | |
| :: ffmpeg windows binary is required (https://ffmpeg.org) | |
| :: Script creates the folders ['flac' and 'alac'] on first run. | |
| :: Copy the associated files to the appropriate folder [ie. '.flac' files to 'flac' folder] | |
| :: and run the | |
| IF NOT EXIST alac\NUL mkdir alac |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
i3-gaps has some packages that are required for it to work so install these things:
sudo apt install libxcb1-dev libxcb-keysyms1-dev libpango1.0-dev libxcb-util0-dev libxcb-icccm4-dev libyajl-dev libstartup-notification0-dev libxcb-randr0-dev libev-dev libxcb-cursor-dev libxcb-xinerama0-dev libxcb-xkb-dev libxkbcommon-dev libxkbcommon-x11-dev autoconf xutils-dev libtool automake
You also need to install libxcb-xrm-dev, but I got Unable to locate package libxcb-xrm-dev when trying to install from the apt repositories on Ubuntu 16.04. If this happens to you, just install it from source using these commands:
mkdir tmp