Skip to content

Instantly share code, notes, and snippets.

View zadjii-msft's full-sized avatar
😪
Just getting back from vacation. Still behind on mails

Mike Griese zadjii-msft

😪
Just getting back from vacation. Still behind on mails
View GitHub Profile
@SuperMatt
SuperMatt / Alacritty.yml
Last active June 12, 2024 20:55
Dark+ V2 Terminal Theme
primary:
background: '#181818'
foreground: '#C7C7C7'
normal:
black: '#000000'
red: '#CD3131'
green: '#0DBC79'
yellow: '#E5E510'
blue: '#2472C8'
magenta: '#BC3FBC'
@premek
premek / mv.sh
Last active March 5, 2024 17:43
Rename files in linux / bash using mv command without typing the full name two times
# Put this function to your .bashrc file.
# Usage: mv oldfilename
# If you call mv without the second parameter it will prompt you to edit the filename on command line.
# Original mv is called when it's called with more than one argument.
# It's useful when you want to change just a few letters in a long name.
#
# Also see:
# - imv from renameutils
# - Ctrl-W Ctrl-Y Ctrl-Y (cut last word, paste, paste)