diff options
-rw-r--r-- | README.rst | 21 | ||||
-rw-r--r-- | X/.Xresources | 9 | ||||
-rw-r--r-- | X/.xinitrc | 8 | ||||
-rw-r--r-- | bash/.bashrc | 7 | ||||
-rw-r--r-- | i3/.config/i3/config | 6 |
5 files changed, 32 insertions, 19 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 f262dea..f8ae77d 100644 --- a/X/.Xresources +++ b/X/.Xresources @@ -1,9 +1,8 @@ -XTerm*faceName: IBM 3270 -UXTerm*faceName: IBM 3270 +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,5 +1,7 @@ -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 exec twm diff --git a/bash/.bashrc b/bash/.bashrc index 5399a88..391bc5e 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -10,13 +10,6 @@ HISTFILESIZE=8000 alias ls='ls --color=auto' alias ll='ls -laF' -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 xcopy='xclip -selection clipboard' alias xpaste='xclip -selection clipboard -o' diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 1705240..6af3601 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 8 +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 8 floating_modifier $mod # start a terminal - bindsym $mod+Return exec uxterm + bindsym $mod+Return exec !TERMINAL # kill focused window bindsym $mod+Shift+q kill @@ -189,7 +189,7 @@ 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 for_window [class="mpv"] floating enable |