Inspired by an article about making free backups to the cloud and this one about automating the process with systemd, I decided to set up automatic backup over the internet of my mule laptop "lapdog".
It's an Arch Linux powered machine I mostly use to kill time, so it's not a big deal if for some reason I screw things up.
Something went wrong when I followed that guide, so I decided to retrace all the steps following restic
and aws
documentation instead of those articles.
And here is my version of the guide (hope it helps someone)
IBM COS basically let you create an Amazon S3 bucket with up to 25GB of cloud space to upload your backups for free! 😁
Too small for a full system backup, but enough fo
I hereby claim:
- I am alyssacohen on github.
- I am alyssathegurl (https://keybase.io/alyssathegurl) on keybase.
- I have a public key ASBdGt1tj-SdxwF1HgylhmChN8OvlbT4AvfVftzIPKaqnAo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SPC s c remove highlight | |
**** Files manipulations key bindings | |
Files manipulation commands (start with ~f~): | |
| Key Binding | Description | | |
|-------------+----------------------------------------------------------------| | |
| ~SPC f c~ | copy current file to a different location | | |
| ~SPC f C d~ | convert file from unix to dos encoding | | |
| ~SPC f C u~ | convert file from dos to unix encoding | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Micro script to toggle "disable touchpad when typing" under GNOME | |
# (to use with some games like 0 A.D.) | |
# | |
# by Alyssa Cohen | |
# | |
DISABLE_TOUCHPAD=$(gsettings get org.gnome.desktop.peripherals.touchpad disable-while-typing) | |
if $DISABLE_TOUCHPAD; then | |
echo "Touchpad remain enabled while typing..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name XDress forum | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description xdress forum purplexion fix | |
@author Alyssa C. | |
==/UserStyle== */ | |
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto+Slab:wght@300&display=swap'); | |
@-moz-document url-prefix("https://www.xdress.it/xdforum/") |