This commit is contained in:
Matthew Ryan Dillon 2023-01-31 16:57:47 -07:00
parent 6f1f912ac5
commit d20996f16a
3 changed files with 17 additions and 4 deletions

View file

@ -1,11 +1,23 @@
# dotfiles # dotfiles
on debian machines, first set the fqdn: on debian machines, set the fqdn (this is necessary for some of the host-specific chezmoi config):
```bash ```bash
sudo hostnamectl set-hostname $MY_HOSTNAME.local sudo hostnamectl set-hostname $MY_HOSTNAME.local
``` ```
set the shell:
```bash ```bash
sh -c "$(curl -fsLS get.chezmoi.io)" -- init ssh://git@pingo.thermokar.st/dotfiles --apply --guess-repo-url=false chsh -s $(which zsh)
```
bootstrap chezmoi:
```bash
sh -c "$(curl -fsLS get.chezmoi.io)" -- \
init \
git://pingo.thermokar.st/dotfiles \
--apply \
--guess-repo-url=false
``` ```

View file

@ -23,7 +23,7 @@ function battery() {
} }
function battery_percentage() { function battery_percentage() {
battery | grep 'percentage' | awk '{print $2'}' battery | grep 'percentage' | awk '{print $2}'
} }
function battery_time_to_empty() { function battery_time_to_empty() {

View file

@ -9,5 +9,6 @@ sudo apt install \
tmux \ tmux \
tree \ tree \
libssl-dev \ libssl-dev \
git git \
-y
{{ end }} {{ end }}