Skip to content

Instantly share code, notes, and snippets.

@mbledkowski
Last active October 16, 2019 23:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbledkowski/2324d0d305a11ffef2b1d451f9aaf58b to your computer and use it in GitHub Desktop.
Save mbledkowski/2324d0d305a11ffef2b1d451f9aaf58b to your computer and use it in GitHub Desktop.
Config files / dotfiles - .zshenv .zshrc .i3/config .Xresources etc
*background: #1e1e20
*foreground: #c5c8c6
*cursorColor: #c5c8c6
*color0: #1e1e20
*color8: #f4d8c6
*color1: #e6a57a
*color9: #e6a57a
*color2: #e39866
*color10: #e39866
*color3: #df8b54
*color11: #df8b54
*color4: #dc7f41
*color12: #dc7f41
*color5: #85678f
*color13: #c6723a
*color6: #b06534
*color14: #b06534
*color7: #f1cbb3
*color15: #E8E8E8
Xft.dpi: 96
Xft.antialias: true
Xft.hinting: true
Xft.rgba: rgb
Xft.autohint: false
Xft.hintstyle: hintslight
Xft.lcdfilter: lcddefault
!XTerm*background: #222D31
!XTerm*foreground: #d8d8d8
!XTerm*pointerColor: #1ABB9B
XTerm*faceName: Fixed
XTerm*faceSize: 11
XTerm*reverseVideo: on
XTerm*selectToClipboard: true
Xcursor.theme: xcursor-breeze
Xcursor.size: 0
URxvt.font: 9x15,xft:TerminessTTFNerdFontMono
URxvt.depth: 32
URxvt*scrollBar: false
URxvt*mouseWheelScrollPage: false
URxvt*cursorBlink: true
URxvt*saveLines: 5000
! Normal copy-paste keybindings without perls
URxvt.iso14755: false
URxvt.keysym.Shift-Control-V: eval:paste_clipboard
URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard
!Xterm escape codes, word by word movement
URxvt.keysym.Control-Left: \033[1;5D
URxvt.keysym.Shift-Control-Left: \033[1;6D
URxvt.keysym.Control-Right: \033[1;5C
URxvt.keysym.Shift-Control-Right: \033[1;6C
URxvt.keysym.Control-Up: \033[1;5A
URxvt.keysym.Shift-Control-Up: \033[1;6A
URxvt.keysym.Control-Down: \033[1;5B
URxvt.keysym.Shift-Control-Down: \033[1;6B
# Aliases
alias aliases="vim ~/.zshenv"
alias rc="vim ~/.zshrc"
alias ls="ls --color"
alias la="ls -a"
alias ll="ls -lhg"
alias lla="ll -a"
alias masny-update="sudo pacman -Syyu && sudo snap refresh"
alias fmgui="pcmanfm"
alias fmcli="ranger"
alias google-chrome="google-chrome-stable --enable-features=WebUIDarkMode --force-dark-mode"
alias spotify="google-chrome-stable --app-id=cnkjkdjlofllcpbemipjbcpfnglbgieh"
alias messenger="google-chrome-stable --app-id=lhhmjbgonbmkmjkeiakdjdfblakcmoie"
alias soundcloud="google-chrome-stable --app-id=cogncpmnihfpagflekafgfhbjahhjgee"
alias youtube-mp3='youtube-dl --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s"'
alias reloadXresources="xrdb ~/.Xresources"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment