with apologies

Reinstalling `maestral`

Richard Mortier · June 28, 2024 · #tech #nixos #old #config

A short one this; just a crib of commands to redo maestral (unofficial Dropbox client) configuration.

# remove existing configuration
rm ~/.config/maestral/maestral.ini
# appears to fail with `/usr/bin/env 'bash': No such file or directory`
maestral autostart && systemctl --user daemon-reload 
# ...so instead, just remmeber to do the following on restart
maestral stop && maestral start 
# if desired, add autocompletion for `maestral` in bash
[[ $(which maestral 2>/dev/null) ]] && source <(maestral completion bash)