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
%\listfiles | |
% !TEX TS-program = xelatex | |
% !TEX encoding = UTF-8 | |
\documentclass{scrreprt} | |
% I use KOMA-script as I find it gives much easier control than a mishmash of different packages. | |
%% KOMA options | |
\KOMAoptions{ | |
appendixprefix=false, | |
chapterprefix=false, |
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
\documentclass[grammar]{subfiles} | |
\begin{document} | |
\chapter{List of Glossing Abbreviations} | |
\label{ch:glossing_abbreviations} | |
The following abbreviations have been used in the linguistics glosses throughout this document. | |
\begin{multicols*}{2}\small | |
\begin{description}[font=\normalfont\scshape,labelindent=12pt,leftmargin=60pt,style=sameline] |
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
-- TBL_ROOTS example data: | |
-- ----------------------- | |
-- | |
INSERT INTO tbl_roots (root_id, root, length, semantic_meaning, date_added) VALUES | |
(1, ARRAY['n','t','l'], 3, 'thinking, thought, ideas', 2011-02-11), | |
(2, ARRAY['s','ş','m'], 3, 'female', 2011-02-11), | |
(3, ARRAY['p','l','t'], 3, 'to beautify, to adorn', 2011-02-11), | |
(4, ARRAY['t','m','s'], 3, 'to grow, to be tall', 2011-02-11); | |
(5, ARRAY['s','q'], 2, 'love, emotions', 2011-02-12); | |
(6, ARRAY['s','z','r'], 3, 'to rule; lord, master', 2011-02-20); |
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
!-------------------------------------------------------------------------------- | |
! File: ~/.xmodmap | |
! vim:ft=xmodmap: | |
!-------------------------------------------------------------------------------- | |
!-------------------------------------------------------------------------------- | |
! Modifier keys | |
!-------------------------------------------------------------------------------- | |
! clear the modifiers and locks |
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
!---------------------------------------------- | |
!! Colours | |
!---------------------------------------------- | |
! Testing "Zork" colour theme. | |
*foreground: #B6B7B8 | |
*background: #202426 | |
! Black | |
*color0: #202426 | |
*color8: #555753 |
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 | |
# Moves images into folders based on their dimensions | |
cd ~/wallpapers | |
for image in *; | |
do | |
dims=$(feh -ls $image | cut -f3,4 --output-delimiter=x | sed 's/WIDTHxHEIGHT//') | |
echo $dims | |
mkdir $dims &> /dev/null | |
mv $image $dims |
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
" | |
" MAIN CUSTOMIZATION FILE | |
" | |
"""""""""""""""""""""""""""""""" | |
" | |
" DISPLAY | |
" | |
"""""""""""""""""""""""""""""""" |
NewerOlder