diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2018-02-20 22:06:38 -0500 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2018-02-20 22:06:38 -0500 |
commit | 4f3b29401c7ff6b42a84b9aca53877783212ec5d (patch) | |
tree | e6fbcd522d8faa3478b4e562d0d0ecde05afdcc4 | |
parent | 9d524a3b8918eae9c8e9ed89d3300b00aaacbecf (diff) |
Made files templates for new systems.
-rw-r--r-- | README.rst | 21 | ||||
-rw-r--r-- | X/.Xresources | 8 | ||||
-rw-r--r-- | X/.xinitrc | 8 | ||||
-rw-r--r-- | bash/.bashrc | 10 | ||||
-rw-r--r-- | i3/.config/i3/config | 8 |
5 files changed, 35 insertions, 20 deletions
@@ -4,7 +4,26 @@ Tucker's Dotfiles These dotfiles are here mostly to move them between my computers and as a backup, but feel free to use them yourself. -vim plugins +Branches +-------- + +I keep the master branch as templates for new systems. Each of my +computers then have their own branch, this is to account for different +font size and other necessary changes. Any changes that need to be +made i.e. font change, are changed to "!INPUT" in files for easy +search/repace. Example, Xresourses: +:: + XTerm*faceName: !FONT + UXTerm*faceName: !FONT + + XTerm*faceSize: !FONT_SIZE + UXTerm*faceSize: !FONT_SIZE + + XTerm*allowBoldFont: false + UXTerm*allowBoldFont: false + + +Vim Plugins ----------- I keep my vim plugins as submodules in this repo, I use `github.com/tuckerevans/plugVim <https://www.github.com/tuckerevans/plugvim>`_ diff --git a/X/.Xresources b/X/.Xresources index 4c30093..f8ae77d 100644 --- a/X/.Xresources +++ b/X/.Xresources @@ -1,8 +1,8 @@ -XTerm*faceName: Terminus -UXTerm*faceName: Terminus +XTerm*faceName: !FONT +UXTerm*faceName: !FONT -XTerm*faceSize: 16 -UXTerm*faceSize: 16 +XTerm*faceSize: !FONT_SIZE +UXTerm*faceSize: !FONT_SIZE XTerm*allowBoldFont: false UXTerm*allowBoldFont: false @@ -1,4 +1,6 @@ -feh --bg-fill /home/tje/Pictures/Wallpapers/Resistor.png -xrdb -merge /home/tje/.Xresources -start-pulseaudio-x11 & +#Basic startx file uncomment lines for more functionality + +#feh --bg-fill !PATH_TO_WALLPAPER +#xrdb -merge /home/tje/.Xresources +#start-pulseaudio-x11 & exec i3 diff --git a/bash/.bashrc b/bash/.bashrc index c5d7852..339a22e 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -1,20 +1,14 @@ # .bashrc set -o vi -source ~/.pass_completion +#source ~/.pass_completion # If not running interactively, don't do anything [[ $- != *i* ]] && return alias ls='ls --color=auto' alias ll='ls -la' -alias school='cd /home/tje/Documents/landmark' -alias embed='school && cd CS2771' -alias os='school && cd CS3871' -alias web='school && cd CSC2621' -alias mobile='school && cd CSC2636' -alias pol='school && cd POL1011' -alias art='school && cd HIS1031' +#alias school='cd !SCHOOL_FOLDER' alias xcopy='xclip -selection clipboard' alias xpaste='xclip -selection clipboard -o' diff --git a/i3/.config/i3/config b/i3/.config/i3/config index f18f5fc..01e0749 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -13,7 +13,7 @@ set $mod Mod1 # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. -font pango:Courier Prime 14 +font pango: !FONT !FONT_SIZE # This font is widely installed, provides lots of unicode glyphs, right-to-left # text rendering and scalability on retina/hidpi displays (thanks to pango). @@ -30,7 +30,7 @@ font pango:Courier Prime 14 floating_modifier $mod # start a terminal - bindsym $mod+Return exec uxterm + bindsym $mod+Return exec !TERMINAL # kill focused window bindsym $mod+Shift+q kill @@ -187,5 +187,5 @@ bindsym XF86AudioPrev exec playerctl previous exec --no-startup-id synclient NaturalScrolling=1 VertScrollDelta=-113 exec --no-startup-id /home/tje/i3-battery-popup -N -bindsym $mod+b exec firefox - +bindsym $mod+b exec !BROWSER +bindsym $mod+p exec passmenu |