Compare commits

...
Sign in to create a new pull request.

18 commits

Author SHA1 Message Date
Truck, Lime Version
82ae7c0747 Update tmux and zshrc to 2021 defaults 2021-04-18 16:50:19 +00:00
Andrew Holland
bf4c2c056b This config is for ancient ubuntu/debian/etc with tmux 1.8 2018-06-12 10:42:52 +00:00
Howland Owl
b890c26ec7 Update aliases; fix mktruckdir 2018-02-26 16:30:36 +02:00
Andrew Holland
90bc6fe551 Change to powerlevel-9k and set it up 2018-02-21 18:37:28 +00:00
Howland Owl
a8d6c1c7b8 Let's use _random_ data, not FIXED, for the random seed 2018-01-17 14:11:48 +02:00
Andrew Holland
1bee0c0491 fix emacs tramp hanging 2018-01-09 14:22:07 +02:00
Werky McWerkness
86c793d780 change the prompt so we don't have to change it everytime 2018-01-09 13:44:14 +02:00
HELLO I REQUIRE CHANGING
ad6acc0dc8 some changes to zgen, apparently. 2017-04-28 12:12:19 +03:00
HELLO I REQUIRE CHANGING
1c4a2f7527 init powerline with some useful additional options 2017-04-28 12:11:42 +03:00
HELLO I REQUIRE CHANGING
8b874e6e3e Alter the zshrc to load powerline from initscript 2017-04-28 12:11:10 +03:00
HELLO I REQUIRE CHANGING
a5e19b0898 git config, including the 'tree' commands I like 2017-04-28 12:10:42 +03:00
Andrew Holland
b00aa2ba0a A few useful alias additions 2017-04-28 12:10:34 +03:00
Andrew Holland
afe19f9172 banga-powerline init portions 2017-04-05 05:45:14 +03:00
Sir Garbagetruck
9381a0966c Add the .mg file with auto-fix for bs-del 2017-03-17 17:50:01 +02:00
Howland Owl
66166e0b1b check for st's terminfo if we're set to st and alter to xterm if missing 2016-10-25 09:10:20 +03:00
Howland Owl
4c60f54aa1 conditional xset - we won't really have this on a server (but leave option) 2016-10-23 13:48:08 +03:00
Howland Owl
7b777890c6 git config (for the tree) 2016-10-23 13:14:20 +03:00
Darth Joulupukki
f6a53409f2 Remove files that, in a server setup, make no sense. 2016-10-23 12:57:55 +03:00
149 changed files with 173 additions and 430 deletions

3
.gitmodules vendored
View file

@ -4,6 +4,3 @@
[submodule "tmuxcompose"]
path = tmuxcompose
url = https://github.com/truck/tmuxcompose
[submodule "fonts/codeface"]
path = fonts/codeface
url = https://github.com/chrissimpkins/codeface

14
aliases
View file

@ -1 +1,15 @@
ruler() { for s in '....^....|' '1234567890'; do w=${#s}; str=$( for (( i=1; $i<=$((($COLUMNS + $w) / $w )) ; i=$i+1 )); do echo -n $s; done ); str=$(echo $str | cut -c -$COLUMNS) ; echo $str; done; }
mktruckdir() {
USER=$(whoami)
sudo mkdir ${1}
sudo chown ${USER}:${USER} ${1}
}
randmac() {
dd status=none if=/dev/urandom bs=1k count=42|md5sum|sed 's/^\(..\)\(..\)\(..\)\(..\)\(..\).*$/02:\1:\2:\3:\4:\5/'
}
randmacxen() {
dd status=none if=/dev/urandom bs=1k count=42|md5sum|sed 's/^\(..\)\(..\)\(..\).*$/00:16:3E:\1:\2:\3'/
}

View file

@ -1,2 +0,0 @@
#!/bin/zsh
~/bin/amigaterm2.sh 10 navy 80 orange green $@

View file

@ -1,34 +0,0 @@
#!/bin/zsh
# help shit
if [[ $1 == '-h' ]]; then
echo Help: $0 fontsize tintcolor fadepercent fadecolor cursorcolor extrashit
else
#TP="TopazPlus a600a1200a4000 for Powerline-$1"
TP="xft:TopazPlus a500a1000a2000 for Powerline-${1}:antialias=false,xft:Symbola-${1}:antialias=false"
PN="xft:P0T\-NOoDLE for Powerline-${1}"
MS="xft:mOsOul for Powerline-${1}"
MK="xft:MicroKnightPlus for Powerline-${1}"
TINTCOLOR=$2
FADEPERCENT=$3
FADECOLOR=$4
CURSORCOLOR=$5
# get rid of these arguments so we can do the rest at the end
shift 5
echo urxvtc -fn \"${TP}\" -fi "${PN}" -fb \"${MS}\" -fbi \"${MK}\" \
-tint \"${TINTCOLOR}\" -fade \"${FADEPERCENT}\" \
-fadecolor \"${FADECOLOR}\" -cr \"${CURSORCOLOR}\" \
-rv -tr -sb -sr -g 80x24 +is -tn \"xterm-256color\" $@
urxvtc -fn "${TP}" -fi "${PN}" -fb "${MS}" -fbi "${MK}" \
-tint "${TINTCOLOR}" -fade "${FADEPERCENT}" \
-fadecolor "${FADECOLOR}" -cr "${CURSORCOLOR}" \
-rv -tr -sb -sr -g 80x24 +is -tn "xterm-256color" $@
if [[ $? != 0 ]]; then
urxvtd -f -o
urxvtc -fn "${TP}" -fi "${PN}" -fb "${MS}" -fbi "${MK}" \
-tint "${TINTCOLOR}" -fade "${FADEPERCENT}" \
-fadecolor "${FADECOLOR}" -cr "${CURSORCOLOR}" \
-rv -tr -sb -sr -g 80x24 +is -tn "xterm-256color" $@
fi
fi

View file

@ -1,34 +0,0 @@
#!/bin/zsh
# help shit
if [[ $1 == '-h' ]]; then
echo Help: $0 fontsize tintcolor fadepercent fadecolor cursorcolor extrashit
else
#TP="xft:TopazPlus a600a1200a4000-$1"
TP="xft:TopazPlus a600a1200a4000-$1:antialias=false"
PN="xft:P0T\-NOoDLE-$1"
MS="xft:mOsOul-$1"
MK="xft:Microknight-$1"
TINTCOLOR=$2
FADEPERCENT=$3
FADECOLOR=$4
CURSORCOLOR=$5
# get rid of these arguments so we can do the rest at the end
shift 5
echo urxvtc -fn "$TP" -fi "$PN" -fb "$MS" -fbi "$MK" \
-tint "$TINTCOLOR" -fade "$FADEPERCENT" \
-fadecolor "$FADECOLOR" -cr "$CURSORCOLOR" \
-rv -tr -sb -sr -g 80x24 +is -tn "xterm-256color" $@
urxvtc -fn "$TP" -fi "$PN" -fb "$MS" -fbi "$MK" \
-tint "$TINTCOLOR" -fade "$FADEPERCENT" \
-fadecolor "$FADECOLOR" -cr "$CURSORCOLOR" \
-rv -tr -sb -sr -g 80x24 +is -tn "xterm-256color" $@
if [[ $? != 0 ]]; then
urxvtd -f -o
urxvtc -fn "$TP" -fi "$PN" -fb "$MS" -fbi "$MK" \
-tint "$TINTCOLOR" -fade "$FADEPERCENT" \
-fadecolor "$FADECOLOR" -cr "$CURSORCOLOR" \
-rv -tr -sb -sr -g 80x24 +is -tn "xterm-256color" $@
fi
fi

3
badssh
View file

@ -1,3 +0,0 @@
#!/bin/zsh
ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "${@}"

View file

@ -1,5 +0,0 @@
urxvtc -fn "xft:TopazPlus a600a1200a4000-:antialias=false" \
-fi "xft:P0T\-NOoDLE" -fb "xft:mOsOul" -fbi "xft:Microknight" \
+is -fg black \
-bg lightgrey \
-cr orange

View file

@ -1,16 +0,0 @@
BULLETTRAIN_VIRTUALENV_PREFIX=µ
BULLETTRAIN_VIRTUALENV_BG=45
BULLETTRAIN_VIRTUALENV_FG=17
BULLETTRAIN_GIT_FG=31
BULLETTRAIN_GIT_BG=14
BULLETTRAIN_TIME_FG=147
BULLETTRAIN_TIME_BG=27
BULLETTRAIN_DIR_FG=237
BULLETTRAIN_DIR_BG=39
BULLETTRAIN_PROMPT_CHAR="»"
BULLETTRAIN_PROMPT_ROOT=true

View file

@ -1,5 +0,0 @@
urxvtc -fn "xft:TopazPlus a600a1200a4000-:antialias=false" \
-fi "xft:P0T\-NOoDLE" -fb "xft:mOsOul" -fbi "xft:Microknight" \
+is -fg yellow \
-bg navy \
-cr firebrick

View file

@ -1,8 +0,0 @@
#!/bin/zsh
cd ~/cower
rm -rf $1
cower -d $1
cd $1
$EDITOR PKGBUILD
makepkg -isc

View file

@ -1,6 +0,0 @@
#!/bin/zsh
while true; do
# feh --bg-scale -z --no-xinerama ~/DB-triple-7680x1600
feh --bg-fill -z --no-xinerama ~/DB-triple-7680x1600
sleep 1h
done

3
dotmg Normal file
View file

@ -0,0 +1,3 @@
global-set-key "\^?" delete-backward-char
global-set-key "\^h\^h" bsmap-mode
global-set-key "\^hh" help-help

View file

@ -1,5 +0,0 @@
#!/bin/zsh
cd /tmp/
curl -o resolv.conf -L "https://api.opennicproject.org/geoip/?resolv&ipv=4"
sudo mv resolv.conf /etc/

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more