Things missing
- fzf
- antibody installation (installs in the current dir, on ./bin)
- purs installation
- PureScript installation
- Nix installation?
- Cleanup of things that aren't used anymore (k8s, minikube, etc)
-
tool-sync
installation and link of config file - Extend the
env-tools
& add installation for it - Add tmux-resurrect
OpenSSL v3.x.x doesn't work with Rust.
The steps from https://askubuntu.com/a/1407024 > Old version of this article
This also required pointing Rust to the right directory
OPENSSL_DIR=/usr/local/ssl cargo build --release
There was another OpenSSL problem.
libssl.so.1.1: cannot open shared object file: No such file or directory
wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb
To set the AltGr modifier for Intl characters (like ñ
) I the following works:
Settings > keyboard > + > English (United States) > "English (intl., with AltGr dead keys)"
Reference: https://askubuntu.com/questions/1420153/english-international-with-altgr-in-ubuntu-22-04-lts
And for making Caps Lock to be Ctrl
Install and use
gnome-tweaks
> Keyboard & Mouse > Keyboard > Additional Layout Options > Caps Lock behavior._
Reference: https://askubuntu.com/questions/33774/how-do-i-remap-the-caps-lock-and-ctrl-keys
Obsidian provides an AppImage
format for their installation.
The file can be executed directly and it will run the program, but it won't show as an application.
Adding a .desktop
file to ~/.local/share/applications
solves the problem.
Here's the file:
[Desktop Entry]
Type=Application
Name=Obsidian
Comment="A second brain, for you, forever."
Icon=/home/bb8/Applications/Obsidian/icon.png
Exec=/home/bb8/Applications/Obsidian/obsidian
Terminal=false
To validate and install the file run:
$ desktop-file-validate ~/.local/share/applications/Obsidian.desktop
$ sudo update-desktop-database
Reference: https://askubuntu.com/a/907572 & https://askubuntu.com/a/805143
https://www.youtube.com/watch?v=F1fh4W_TXa8 => the update alternative part is also required