Skip to content

tschutter/homefiles

Folders and files

NameName
Last commit message
Last commit date
Feb 28, 2023
Feb 23, 2023
Jan 31, 2013
Jan 30, 2012
Nov 9, 2012
Dec 1, 2013
Mar 21, 2016
Jan 12, 2012
Nov 17, 2013
Jan 31, 2012
Nov 15, 2014
Dec 15, 2013
Dec 2, 2012
Oct 7, 2021
Apr 10, 2016
Jul 29, 2016
Jan 22, 2012
Aug 28, 2023
Jan 28, 2013
Dec 12, 2024
Aug 31, 2023
Apr 30, 2016
Aug 29, 2013
Oct 19, 2014
Jan 29, 2015
Apr 20, 2022
Dec 8, 2017
Oct 18, 2014
Jun 12, 2014
Feb 28, 2023
May 14, 2017
Apr 17, 2019
Jan 30, 2014
Mar 23, 2012
Sep 18, 2012
Nov 15, 2014
May 20, 2021
Nov 15, 2014
Dec 12, 2024
Dec 13, 2017
Mar 5, 2016
Jun 24, 2021
Sep 1, 2012
Apr 28, 2017
Mar 14, 2014
Jan 24, 2012
Sep 12, 2023
Sep 29, 2021
Nov 28, 2016
May 10, 2017
May 20, 2021
May 1, 2016
Dec 6, 2014
Oct 7, 2017
Feb 10, 2012
Jan 19, 2012

Repository files navigation

Homefiles

Initial System Preparation

OpenBSD:

MIRROR=http://mirror.esc7.net/pub/OpenBSD/
PKG_PATH=${MIRROR}`uname -r`/packages/`uname -m`/; export PKG_PATH
doas pkg_add -i -z git python-3*
echo "XTerm*loginShell: true" >> ~/.Xdefaults

Debian, Ubuntu:

sudo apt-get install git python3

Usage

Initial checkout:

git clone git://github.com/tschutter/homefiles.git $HOME/.homefiles
cd $HOME/.homefiles
./install.py
bin/install-essentials
./install.py

Update:

cd $HOME/.homefiles
git pull
./install.py
install-essentials

Manual Configuration

Some configuration is difficult to do via scripts.

XUbuntu / xfce

  1. Settings Manager -> Personal -> Window Manager Tweaks -> Accessibility

    • Uncheck "Automatically tile windows when moving toward the screen edge".

      Why should a window resize when you move it? Especially to some odd half-screen size?

  2. Right click on the clock in the top panel and select Properties.

    • Set the Format to "Custom Format" and set the custom format string to "%a, %Y-%m-%d %H:%M".

      See ISO 8601 for the reason why.

Linux Mint

  1. Control Center -> Keyboard Shortcuts -> Window Management

    • In the "Activate the window menu" row, select "Alt+Space" and press backspace.

      Alt-space is reserved for just-one-space in Emacs.

Vivaldi

  1. Vivaldi Menu -> Settings -> Sync
    • Enter username and password.

Firefox

  1. Install Bluhell Firewall, the lightweight Ad-Blocker and Tracking/Privacy Protector. Use the Firefox Add-ons menu.

Other Optional Setup

  1. Generate ssh private/public key pair:

    ssh-keygen
    
  2. Add ssh public key to Bitbucket and GitHub.

  3. Install pcloud app.

    • Download pCloud Drive and save it to ~/bin/pcloud. Make it executable.
    • Run pcloud and login.
    • Add a sync between ~/org and pcloudDrive/org.
  4. Copy GPG secret keys. Run on source machine:

    gpg --export-secret-keys > gpg-secrets.txt
    

    Copy gpg-secrets.txt to new machine and then import:

    gpg --import gpg-secrets.txt
    
  5. Setup pass database. Read instructions in .password-store/0-README.txt.


Troubleshooting

  1. Pressing Ctrl-Shift in a terminal window displays a yellow box containing "ISO 14755 mode".

    This a "feature" of xterm. Use xfce4-terminal instead. Check Settings Manager -> System -> Default Applications -> Utilities -> Terminal Emulator.