Giter VIP home page Giter VIP logo

dotfiles's Introduction

My dotfiles

See feature overview at FEATURES.md.

Why Customize?

  • Feeling of control over annoyances
  • Use of something inspires ideas for how to improve it

Installation

For All Systems (headless and graphical)

# Note, look for *.ssh directories in my home dir in case i copied frequently used keys for e.g. cloud machines.
# Setup ssh so we can pull github repos
# https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
ssh-keygen -t ed25519 -C "[email protected]"
# Hit enter three times
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
# Go to https://github.com/settings/ssh/new and add the keys
# by pasting in the output (without newlines) of:
cat ~/.ssh/id_ed25519.pub

# Install this repo, allowing existing files in home dir to exist.
# Taken from https://stackoverflow.com/questions/9864728/how-to-get-git-to-clone-into-current-directory
cd ~/
git init .
git remote add -t \* -f origin [email protected]:kovasap/dotfiles.git
git pull
git checkout master

# Install linuxbrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

# Install all apt dependencies
sed 's/#.*//' packages-to-install.txt | xargs sudo apt install -y
curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin

# Nightly rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup toolchain link system /usr
rustup default system
rustup install nightly

# See https://difftastic.wilfred.me.uk/introduction.html
cargo install difftastic

# Install latest neovim
# https://github.com/neovim/neovim/wiki/Installing-Neovim#install-from-download
# sudo apt install neovim neovim-runtime
# If installing from a package manager like apt, make sure neovim-runtime is
# also installed, otherwise some plugins wont work (like lsp and treesitter).
#
# Linuxbrew has usually a more up to date verion of nvim.
brew install neovim
cd .local/share/nvim/site/pack/paqs/start/parinfer-rust/
cargo build --release
cd ~/
# Install vim python package
pip install neovim
pip install 'python-lsp-server[all]'

# Install oh my zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
mv ~/.zshrc.pre-oh-my-zsh ~/.zshrc
# Install zplug
curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh
# Install p10k zsh theme
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
# Install autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

# Open a new zsh terminal and run:
zplug install

# Install fzf
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install --key-bindings --completion --no-update-rc

# Linuxbrew and clojure
brew install clojure/tools/clojure
brew install borkdude/brew/babashka

# Install my cron jobs
crontab ~/crontab

# Jet for handy formatting
bash < <(curl -s https://raw.githubusercontent.com/borkdude/jet/master/install)

Graphical Only

# TODO remove if unused
# Link udev rules to /etc/udev/rules.d/
sudo ln -s ~/udev_rules/mouse.rules /etc/udev/rules.d/mouse.rules
sudo ln -s ~/udev_rules/fix_mouse_sens.bash /usr/local/bin/fix_mouse_sens.bash
sudo udevadm control --reload
# Can monitor activity with:
# udevadm monitor --environment

# Required for copyq to work
sudo dbus-uuidgen > /var/lib/dbus/machine-id

# Install activitywatch into ~/activitywatch/
# https://docs.activitywatch.net/en/latest/getting-started.html
# It will be autostarted via ~/.xinitrc

# Clone, build and install compton: https://github.com/kovasap/compton#how-to-build
git clone [email protected]:kovasap/compton.git
sudo apt install libxcomposite-dev libxdamage-dev libxrender-dev libxrandr-dev libxinerama-dev libconfig-dev libdrm-dev libdbus-1-dev libgl-dev asciidoc
cd compton
make
make docs
sudo make install
cd ~/

# Currently, switching to picom is blocked on
https://github.com/yshui/picom/issues/215 and/or
https://github.com/yshui/picom/pull/247 working properly.
# Clone, build and install picom: https://github.com/jonaburg/picom

# Install clojure tooling
# https://clojure-lsp.io/installation/#script
sudo bash < <(curl -s https://raw.githubusercontent.com/clojure-lsp/clojure-lsp/master/install)
# zprint for formatting https://github.com/kkinnear/zprint/releases


# Install Joker
# https://github.com/candid82/joker/releases

# Install grive2 for google drive syncing
git clone https://github.com/vitalif/grive2
sudo apt-get install git cmake build-essential libgcrypt20-dev libyajl-dev \
    libboost-all-dev libcurl4-openssl-dev libexpat1-dev libcppunit-dev \
    binutils-dev debhelper zlib1g-dev dpkg-dev pkg-config
cd grive2
mkdir build
cd build
cmake ..
make -j4
sudo make install
cd ~/
mkdir google-drive
cd google-drive
grive -a -P -f
cd ~/

# Install google drive syncer
# sudo apt install golang
# go get -u github.com/odeke-em/drive/cmd/drive
# ln -s ~/go/bin/drive bin/drive

# Install xmenu
sudo apt install libxft-dev libimlib2-dev
git clone [email protected]:phillbush/xmenu.git
cd xmenu
make
sudo make install
cd ~/
git clone [email protected]:phillbush/xclickroot.git
cd xclickroot
sudo make clean install
cd ~/

# Install fonts located in ~/.local/share/fonts.
# Installing new fonts should just involve copying them to that dir and running:
fc-cache -f -v
    
# Install qtile
git clone [email protected]:kovasap/qtile.git
cd qtile
mkvirtualenv qtile
pip install xcffib; pip install cairocffi
pip install -r requirements.txt
pip install .
./scripts/ffibuild
sudo cp qtile-venv.desktop /usr/share/xsessions/
cd ~/
deactivate

# Make sure brightness controls work
sudo chmod a+rw /sys/class/backlight/intel_backlight/brightness
# Make sure this happens every time on boot
sudo cp rc.local /etc/rc.local

# Colemak with capslock as escape
sudo cp keyboard/us-xkb-symbols /usr/share/X11/xkb/symbols/us
sudo cp keyboard/pc-types /usr/share/X11/xkb/types/pc

# Build and install launcher
# https://github.com/enkore/j4-dmenu-desktop
git clone https://github.com/enkore/j4-dmenu-desktop.git
cd j4-dmenu-desktop
cmake .
make
sudo make install
cd ~/

pip3 install bandcamp-downloader

# Chrome extensions:
# https://chrome.google.com/webstore/detail/adblock-%E2%80%94-best-ad-blocker/gighmmpiobklfepjocnamgkkbiglidom
# https://chrome.google.com/webstore/detail/vimium-c-all-by-keyboard/hfjbmagddngcpeloejdejnfgbamkjaeg?hl=en
# https://chrome.google.com/webstore/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb - useful for selfspy link saving

# Packages to install from github or online download:
# https://github.com/Ventto/lux
# https://github.com/kovasap/selfspy
# https://github.com/dsanson/termpdf.py

Also optionally install https://github.com/kovasap/auto-screenshooter.

Debugging

Running sudo commands on login/startup

Put commands in /etc/rc.local like this:

> cat /etc/rc.local
#!/bin/sh -e

# Fixes "dummy output" audio problem
echo "options snd-hda-intel model=generic" | tee -a /etc/modprobe.d/alsa-base.conf
# Allows brightness.sh script to work.
chmod a+rw /sys/class/backlight/intel_backlight/brightness
exit 0

Window Manager Issues

startx <wm-name> will start a WM from the terminal. startx with no args will start the default WM as defined in ~/.xsession (i think).

Possible WMs to start with as understood by a display manager (gdm, lightdm) are listed in /usr/share/xsessions. I think these are also the possibilties that can be fed to startx.

Logs to look at for issues:

  • xorg.log
  • qtile.log

When running QTile with a virtualenv Python, updates to the system Python can break it. Re-creating the virtualenv and reinstalling QTile in it should fix the problem. See the QTile section in the installation commands above.

NeoVim

One very useful tool for debugging (neo)vim hangs is running strace -r nvim. This helped me determine once that my vim was hanging on quit because it was trying to cd to an unmounted directory.

Windows

Automatic Screenshooting

  1. Download https://www.nirsoft.net/utils/nircmd.html
  2. Make a new task in Windows "Task Scheduler" with program cmd.exe and arguments /c C:\Users\kovas\Downloads\nircmd\nircmd.exe savescreenshotfull "C:\Users\kovas\OneDrive\Pictures\Screenshots\screenshot_%time:~0,2%%time:~3,2%%time:~6,2%_%date:~-10,2%%date:~-7,2%%date:~-4,4%.png"
    • This actually is problematic because if you use the "Run only when user is logged on" option, you will get a popup command line when the command executes that gets included in the screenshot. If you use "Run whether user is logged on or not, the screenshots will be black". To fix this, use program C:\Users\kovas\Downloads\nircmd\nircmd.exe and argument savescreenshotfull "C:\Users\kovas\OneDrive\Pictures\Screenshots\screenshot.png". Then you need to make sure this is synced to Google photos before it gets overwritten. Or make another task to move it to a unique filename with program cmd.exe.
  3. Set the task to run on your preferred schedule.
  4. Use the Google Drive app to sync your screenshot directory to Google Photos.

Future Improvements

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.