(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
Add this in your path as git-up
and git-reup
(symbolic link) and it amps up your git pull
by means of git up
pull --rebase
- gets rid of unnecessary merge commits. If you don't know what rebase does, this is probably safe for you. If you know what rebase does, you should know where this will not be safe for you.Kyle Neath, Ryan Tomayko and then Zach Holman basically figured out how to do this. TheSpyder found a small error on case sensitive file systems.
#!/usr/bin/env python3 | |
"""Toggl → Timewarrior import extension | |
© 2016 Paul Natsuo Kishimoto <[email protected]> | |
Licensed under the GNU GPL v3 or later. | |
Implements a Timewarrior extension (see | |
https://taskwarrior.org/docs/timewarrior/index.html) to import data from Toggl | |
(http://toggl.com). |
http://[2a04:ac00:1:3dd8::1:2710]:2710/announce | |
http://0123456789nonexistent.com:80/announce | |
http://0d.kebhana.mx:443/announce | |
http://1337.abcvg.info:80/announce | |
http://207.241.226.111:6969/announce |
\o
will be a regular 'o' in this context.#!/usr/bin/bash -xe | |
cat <<EOF > "${HOME}/.config/systemd/user/zoom.slice" | |
[Slice] | |
AllowedCPUs=0-4 | |
MemoryHigh=6G | |
EOF | |
cat /usr/share/applications/Zoom.desktop | sed -E 's#^(Exec=).*$#Exec=/usr/bin/systemd-run --user --slice=zoom.slice /opt/zoom/ZoomLauncher#' > "${HOME}/.local/share/applications/Zoom.desktop" |