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
[general] | |
shadow = 0 | |
# There is experimental mouse support | |
mouse = 0 | |
# To use some custom window-manager | |
wm = /usr/lib/gnt/irssi.so |
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 | |
set -e # Exit on error | |
DEVICE=$1 | |
[ -z "${DEVICE}" ] && echo "Usage $0 /dev/sdX" && exit 1 | |
udevadm info -n ${DEVICE} -q property | |
echo "Selected device is ${DEVICE}" | |
read -p "[Press enter to continue or CTRL+C to stop]" |
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
%http://tex.stackexchange.com/questions/77920/comment-package-excludecomment-gives-error | |
\documentclass[12pt]{article} | |
\usepackage{todonotes} % \missingfigure | |
\usepackage{comment} % to exclude whole sections when I want to | |
\newif\ifshow % toggle true or false based on if want to hide section | |
%\showtrue % show the sections | |
\showfalse % hide the sections | |
\ifshow |