From b4c2428833929c41f72902a3954ff3ba3be43368 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sun, 29 Jan 2023 17:34:52 -0700 Subject: [PATCH] starting to set up devterm config --- home/.chezmoiexternal.toml.tmpl | 20 +++++++ home/dot_zshrc | 79 -------------------------- home/dot_zshrc.tmpl | 53 +++++++++++++++++ home/run_once_install-packages.sh.tmpl | 13 +++++ 4 files changed, 86 insertions(+), 79 deletions(-) create mode 100644 home/.chezmoiexternal.toml.tmpl delete mode 100644 home/dot_zshrc create mode 100644 home/dot_zshrc.tmpl create mode 100644 home/run_once_install-packages.sh.tmpl diff --git a/home/.chezmoiexternal.toml.tmpl b/home/.chezmoiexternal.toml.tmpl new file mode 100644 index 0000000..3e370ee --- /dev/null +++ b/home/.chezmoiexternal.toml.tmpl @@ -0,0 +1,20 @@ +[".zprezto"] + type = "git-repo" + url = "https://github.com/sorin-ionescu/prezto.git" + refreshPeriod = "168h" + [".zprezto".pull] + args = ["--recurse-submodules"] + [".zprezto".clone] + args = ["--recurse-submodules"] + +{{- if eq .chezmoi.hostname "devterm" }} +["ttyscheme"] + type = "git-repo" + url = "https://github.com/kolunmi/ttyscheme.git" + refreshPeriod = "168h" +{{- else }} +[".config/base16-shell"] + type = "git-repo" + url = "https://github.com/chriskempson/base16-shell.git" + refreshPeriod = "168h" +{{- end }} diff --git a/home/dot_zshrc b/home/dot_zshrc deleted file mode 100644 index 7ba4775..0000000 --- a/home/dot_zshrc +++ /dev/null @@ -1,79 +0,0 @@ -# Matthew Dillon -# matthewrdillon@gmail.com - -srcs=( - "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" - "/opt/miniconda3/etc/profile.d/conda.sh" - "$HOME/.cargo/env" -) - -for fp in $srcs; do - if [[ -s "$fp" ]]; then - source "$fp" - fi -done - -BASE16_SHELL=$HOME/.config/base16-shell/ -[ -n "$PS1" ] && [ -s $BASE16_SHELL/profile_helper.sh ] && eval "$($BASE16_SHELL/profile_helper.sh)" - -alias q="conda activate q2dev" -alias i="ipython3" -alias vim="nvim" - -# Backup shortcuts (borrowed parts from https://github.com/laurent22/rsync-time-backup -function prune_backups() { - dest_root="/Volumes/field_on_fire/$HOST" - epoch=$(date "+%s") - previous='0000-00-00-000000' - for filename in $(find "$dest_root" -type d -name "????-??-??-??????" -prune | sort -r); do - backup_date=$(basename "$filename") - timestamp=$(date -j -f "%Y-%m-%d-%H%M%S" "$backup_date" "+%s") - if [ -z "$timestamp" ]; then - echo "Error parsing date date: $filename" - continue - fi - if [ $timestamp -ge $((epoch - 86400)) ]; then - true - elif [ $timestamp -ge $((epoch - 2678400)) ]; then - if [ "${backup_date:0:10}" '==' "${previous:0:10}" ]; then - rm -rf "$filename" - fi - else - if [ "${backup_date:0:7}" '==' "${previous:0:7}" ]; then - rm -rf "$filename" - fi - fi - previous=$backup_date - done -} - -function back_things_up() { - date=$(date +"%Y-%m-%d-%H%M%S") - # TODO: update this... - dest_root="/Volumes/field_on_fire/$HOST" - rsync -azP \ - --stats \ - --human-readable \ - --itemize-changes \ - --size-only \ - --link-dest=$dest_root/latest \ - --exclude-from $HOME/.dotfiles/rsync_excludes.txt \ - $HOME/ \ - $dest_root/$date && \ - rm -f $dest_root/latest && \ - ln -s $dest_root/$date $dest_root/latest - # TODO: once confident pruning is working well, add that in here -} - -function devlog() { - vim -c 'Goyo' '+normal Go' +startinsert ~/projects/personal/devlog/logs/$(date '+%Y-%m-%d').gmi -} - -# NOTE: this might need a mapped network drive to work (e.g. Z:\) -function cmd() { - CMD=$1 - shift; - ARGS=$@ - WIN_PWD=$(wslpath -w ${PWD}) - cmd.exe /c "pushd ${WIN_PWD} && ${CMD} ${ARGS}" -} diff --git a/home/dot_zshrc.tmpl b/home/dot_zshrc.tmpl new file mode 100644 index 0000000..a748a7b --- /dev/null +++ b/home/dot_zshrc.tmpl @@ -0,0 +1,53 @@ +srcs=( + "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" + "/opt/miniconda3/etc/profile.d/conda.sh" + "$HOME/.cargo/env" +) + +for fp in $srcs; do + if [[ -s "$fp" ]]; then + source "$fp" + fi +done + +BASE16_SHELL="$HOME/.config/base16-shell/" +[ -n "$PS1" ] && \ + [ -s "$BASE16_SHELL/profile_helper.sh" ] && \ + source "$BASE16_SHELL/profile_helper.sh" + +alias i="ipython3" + +{{- if eq .chezmoi.hostname "devterm" }} +function battery() { + upower -i /org/freedesktop/UPower/devices/battery_axp20x_battery +} + +function battery_percentage() { + battery | grep 'percentage' | awk '{print $2'}' +} + +function battery_time_to_empty() { + battery | grep 'time to empty' | awk '{print $4, $5}' +} + +export LPDEST=devterm_printer +alias receipt="lp" + +function receipt_feed () { + echo -e "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" > /tmp/DEVTERM_PRINTER_IN +} + +function brightness_half { + brightnessctl set 5 +} + +function brightness_max { + brightnessctl set 9 +} + +function brightness_min { + brightnessctl set 1 +} + +# ttyscheme +{{- end}} diff --git a/home/run_once_install-packages.sh.tmpl b/home/run_once_install-packages.sh.tmpl new file mode 100644 index 0000000..d12e3ee --- /dev/null +++ b/home/run_once_install-packages.sh.tmpl @@ -0,0 +1,13 @@ +{{- if eq .chezmoi.hostname "devterm" }} +#!/bin/sh +sudo apt install \ + ripgrep \ + brightnessctl \ + lynx \ + libncurses-dev \ + zsh \ + tmux \ + tree \ + libssl-dev \ + git +{{- end }}