Advanced Search
Search Results
9 total results found
Weird green and blue artifacts after opening and closing laptop lid
OS: Fedora 40 (Gnome) Hardware: Asus ROG Laptop, NVIDIA graphics Issue: Was trying to get my laptop to "ignore" on lid switch status. However, after editing the logind.conf, when I would close and open my laptop lid, the screen would go black and there were...
HandleLidSwitch status being ignored
OS: Fedora 40 (GNOME) Hardware: Asus ROG, NVIDIA graphics Issue: I edited logind.conf to ignore HandleLidSwitch but every time, closing the lid would log me out of the session. Solution: See Weird green and blue artifacts after opening and closing laptop ...
Closing laptop lid causes laptop to suspend (want it do nothing)
OS: Fedora 40 (GNOME) Hardware: Asus ROG, NVIDIA graphics Issue: When I close the laptop lid, I don't want anything to happen. When I open it, the screen should be the same as when I closed it. Solution: Edit /etc/systemd/logind.conf so that it contains t...
Common OS Setup
Setup KeepassXC Install: https://keepassxc.org/ Do not install the flatpak, it will not be possible to connect browsers to the databasee Open database Configure the usual Setup Firefox Install: https://www.mozilla.org/en-US/firefox/downlo...
Add environment variable in fish
Inside ~/.config/fish/config.fish add the following: set -gx <ENV_VAR_NAME> <VALUE>
Add to PATH in fish
Run the command: fish_add_path -p <PATH> Check the path:
Create new SSH key and add it to ssh-agent
ssh-keygen -t ed25519 -C "your_email@example.com" eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_ed25519
Enable new SSH key for login
On the local computer: ssh-copy-id -i ~/.ssh/<KEY_NAME>.pub <USERNAME>@<REMOTE>
Creating a Laravel project
Install compose Create project composer create-project --prefer-dist laravel/laravel <project-name> Edit .env with database details Install composer dependencies composer install Run db migrations php artisan migrate Add breeze (for authe...