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/python | |
from sys import argv | |
from sys import exit | |
help = '''Usage: sort [OPTION]... [ARGS]\n | |
[OPTIONS] | |
\'-a\' - Sort ARGS alphabetically. | |
\'-i\' - Sort ARGS numerically. | |
\'-b\' - Sort ARGS alphabetically | |
\'--help\' - Display this dialog.''' |
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
# | |
## Evergreen's tmux config file | |
# | |
# General Settings ------------------------------------------------------- {{{ | |
# 256 colors please | |
set -g default-terminal "screen-256color" | |
# Use vim keys for copy mode |
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
[Background] | |
Color=50,48,47 | |
[BackgroundIntense] | |
Color=29,32,33 | |
[Color0] | |
Color=50,48,47 | |
[Color0Intense] |
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/bash | |
if [ -z "$(/sbin/pidof akregator)" ] | |
then | |
akregator | |
fi | |
for f in "${@/feed/http}"; do | |
qdbus org.kde.akregator /Akregator \ | |
org.kde.akregator.part.addFeedsToGroup "$f" "Imported" | |
done |
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
ColorForeground=#f2f2e5e5bcbc | |
ColorBackground=#323230302f2f | |
ColorCursor=#d65bc4cd8ca1 | |
ColorPalette=#323230302f2f;#cccc24241d1d;#989897971a1a;#d7d799992121;#454585858888;#b1b162628686;#68689d9d6a6a;#929283837474;#1d1d20202121;#fbfb49493434;#b8b8bbbb2626;#fafabdbd2f2f;#8383a5a59898;#d3d386869b9b;#8e8ec0c07c7c;#b9b9a6a69393 |
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
function! s:FixScroll() | |
if &wrap | |
return 0 | |
elseif col(".") - wincol() - &fdc + &number * &numberwidth ==# 0 | |
return 0 | |
endif | |
let l:targetcol = winwidth(0) - &sidescrolloff | |
if wincol() < l:targetcol |
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
# Maintainer: Jonathon Fernyhough <jonathon at_m2x+dev> | |
# Contributor: Aleksej Komarov <[email protected]> | |
# Contributor: MKzero <info[at]linux-web-development[dot]de> | |
# Contributor: Evergreen <evergreenubuntu[at]gmail[dot]com> | |
# Upstream: Bitwig GmbH <[email protected]> | |
# Original PKGBUILD taken wholesale from stylemistake's bitwig-studio package | |
# JF added a prepare() to allow side-by-side installation with release version | |
pkgname=bitwig-studio-beta |