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
| #!/bin/bash | |
| sudo dnf copr enable @go-sig/golang-rawhide | |
| sudo dnf update |
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
| sudo dnf install -y libsecret gnome-keyring dbus-daemon dbus-tools git-credential-libsecret git-credential-oauth | |
| systemctl --user enable gnome-keyring-daemon --now | |
| git config --global --unset-all credential.helper | |
| git config --global --add credential.helper libsecret | |
| git config --global --add credential.helper oauth | |
| On headless systems without desktop (also WSL): | |
| loginctl enable-linger $USER |
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
| # ~/.config/fish/conf.d/wslg.fish | |
| ln -sf /mnt/wslg/runtime-dir/wayland-* $XDG_RUNTIME_DIR/ |
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
| sudo apt install asciidoc build-essential golang | |
| git clone https://github.com/foxboron/sbctl.git | |
| cd sbctl | |
| sudo make install | |
| sbctl |
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
| References: | |
| https://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface/Secure_Boot | |
| https://www.reddit.com/r/archlinux/comments/10pq74e/my_easy_method_for_setting_up_secure_boot_with/?rdt=45020 | |
| This post is both for my own reference and for anyone with GRUB who is struggling to set up Secure Boot. Here is what I found to be the easiest method: | |
| [Disclaimer: This method does not work with "Secured-core" PCs] | |
| Re-install GRUB to utilize Microsoft's CA certificates (as opposed to shim) -- replace 'esp' with your EFI system partition: |
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
| # Install APT dependencies (from deadsnakes: https://github.com/deadsnakes/runbooks/tree/main/dockerfiles) | |
| sudo apt-get install blt-dev \ | |
| build-essential \ | |
| gnupg \ | |
| libbluetooth-dev \ | |
| libbz2-dev \ | |
| libdb-dev \ | |
| libexpat1-dev \ | |
| libffi-dev \ | |
| libgdbm-dev \ |
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
| // Demo: https://codesandbox.io/s/mantine-appshell-with-scrollarea-on-main-content-u38yey | |
| import { | |
| AppShell, | |
| Aside, | |
| Box, | |
| Footer, | |
| Header, | |
| MantineProvider, | |
| Navbar, |