Hyprland Blurring Effect Configuration

How to Disable the Effect {% note info %} The effect makes the visual experience not that fluent, kind of annoying, instead {% endnote %} To disable the blurring background effect for a specific application (like VS Code) in Hyprland on Arch Linux, follow these steps: 1. Identify the Window Class Open VS Code, then run this command in a terminal: 1hyprctl activewindow | grep "class" The output will show the class, typically code for VS Code. If not, check all windows with: ...

June 5, 2025 · 2 min · 293 words · xxraincandyxx

Git Config Guide

Change Git Global Config to the Correct Info This sets your default Git identity for all new commits from now on: 1git config --global user.name "your username" 2git config --global user.email "your.email@example.com" You can double-check it worked with: 1git config --global --list Set Git Default Editor Run one of the following commands in your terminal, replacing editor-command with your preferred editor: For Vim (default in many systems): 1git config --global core.editor "vim" For VS Code 1git config --global core.editor "code --wait" Verify Settings Check your configured editor with: ...

April 7, 2025 · 1 min · 102 words · xxraincandyxx