diff options
author | Camil Staps | 2023-03-30 21:57:39 +0200 |
---|---|---|
committer | Camil Staps | 2023-03-30 21:57:39 +0200 |
commit | 76addba7b49edb4cd1b49550b36ba7add9beabb2 (patch) | |
tree | 761cdfaca90f79e65f1206a92c4d12882c6de86e | |
parent | Add picom (diff) |
Add notes on dropbox and skype installation
-rw-r--r-- | yoga/README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/yoga/README.md b/yoga/README.md index 9b3e57d..2692c8e 100644 --- a/yoga/README.md +++ b/yoga/README.md @@ -34,3 +34,16 @@ reduce power usage on battery. The laptop apparently does not support S3 and suspension upon closing the laptop does not work out of the box. However, we can use `systemctl suspend` / `systemctl suspend-then-hibernate`; see `/etc/systemd/logind.conf`. + +### Dropbox and Skype + +Install these using the `.deb` provided. `apt update` will complain about +missing certificates. To fix this: + +``` +# export GNUPGHOME=$(mktemp -d) +# gpg --keyserver keyserver.ubuntu.com --recv-keys D4040146BE3972509FD57FC71F3045A5DF7587C3 +# gpg --export D4040146BE3972509FD57FC71F3045A5DF7587C3 > /etc/apt/trusted.gpg.d/skype.gpg +# gpg --keyserver keyserver.ubuntu.com --recv-keys 1C61A2656FB57B7E4DE0F4C1FC918B335044912E +# gpg --export 1C61A2656FB57B7E4DE0F4C1FC918B335044912E > /etc/apt/trusted.gpg.d/dropbox.gpg +``` |