- cargo install exa
- binary: exa
- repo: https://github.com/ogham/exa
- note on current version I had to switch to rust nightly for mac, wouldn't compile: https://www.oreilly.com/library/view/rust-programming-by/9781788390637/e07dc768-de29-482e-804b-0274b4bef418.xhtml
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/steveduys/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
#!/bin/bash | |
#After installing holoiso 4 offline iso -- released in Dec '22 -- you may run into the inability to download system updates | |
#due to repo names out of sync with upstream. (https://steamdeck-packages.steamos.cloud/archlinux-mirror/) | |
#First, ensure your current version reads 3.4 in steamdeck GUI system properties. | |
# | |
#switch to desktop mode, load Konsole | |
#save this script to your home dir ~/ | |
# |
#!/usr/bin/env python | |
#BATOCERA SETUP: | |
#(removed custom game collection section, caused error in batocera) | |
#wget -O export.py <this gist> | |
#SETUP PREREQ: (I cloned repo on laptop first and scp'ed up to batocera box) | |
#git clone --depth=1 https://github.com/jmcnamara/xlsxwriter | |
#cd xlsxwriter | |
#sudo python3 setup.py install |
- turn off adaptive brightness and set initial brightness https://www.youtube.com/watch?v=6A1sN3XRa-k
- turn off rumble/haptics https://www.youtube.com/watch?v=bEuDe-uzRcc
other reminders: https://www.youtube.com/watch?v=PBrCahw1IQk
Recently found some clowny gist was the top result for 'google takeout multiple tgz', where it was using two bash scripts to extract all the tgz files and then merge them together. Don't do that. Use brace expansion, cat
the TGZs, and extract:
$ cat takeout-20201023T123551Z-{001..011}.tgz | tar xzivf -
You don't even need to use brace expansion. Globbing will order the files numerically:
$ cat takeout-20201023T123551Z-*.tgz | tar xzivf -
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
- Create a bare clone of the repository.
(This is temporary and will be removed so just do it wherever.)
git clone --bare [email protected]:usi-systems/easytrace.git
Edit /etc/systemd/resolved.conf
, set option Domains=
(space separated list of domains) according to docs and then restart systemd-resolved.
$ systemctl restart systemd-resolved