- Nvidia Prime offloading for laptops with hybrid graphics (support for external monitors via USB-C/Thunderport)
- xkill alternative. Currently in wayland each DE/WM uses its own method.
- KDE (KWin):
qdbus org.kde.KWin /KWin killWindow
- Sway
- SIGTERM:
swaymsg kill
. Default keybind:$Mod + Shift + q
- SIGKILL:
kill -9 $(swaymsg -t get_tree | jq '.. | select(.type?) | select(.focused==true).pid')
- SIGTERM:
- Hyperland:
hyprctl dispatch kill
- KDE (KWin):
- Gnome (Mutter): ?
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
export NIX_CONFIG="extra-experimental-features = nix-command flakes" && export NIXPKGS_ALLOW_UNFREE=1 | |
nix profile install nixpkgs\#git | |
nix profile install --impure nixpkgs\#claude-code | |
git clone [email protected]:Bad3r/dotfiles.git $HOME/dotfiles | |
git clone [email protected]:Bad3r/nixos-dendritic.git $HOME/nixos | |
# Ensure to update hardware info | |
sudo $HOME/nixos/build -t tec |
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
{ | |
"cleanupPeriodDays": 30, | |
"env": { | |
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": 1, | |
"DISABLE_TELEMETRY": 1, | |
"CLAUDE_CODE_ENABLE_TELEMETRY": 0, | |
"DISABLE_ERROR_REPORTING": 1, | |
"CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR": 1, | |
"CLAUDE_BASH_DEFAULT_TIMEOUT_MS": 120000, | |
"CLAUDE_BASH_MAX_TIMEOUT_MS": 600000, |
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
default_language_version: | |
python: python3.13 | |
fail_fast: true | |
repos: | |
# Use the Ruff version managed by the project's dev dependencies for consistency | |
- repo: local | |
hooks: | |
- id: ruff | |
name: "Ruff (Linter)" | |
stages: [pre-commit] |
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
<style> | |
:root { | |
--lt-color-gray-100: #d8dee9; | |
--lt-color-gray-200: #e5e9f0; | |
--lt-color-gray-300: #eceff4; | |
--lt-color-gray-400: #8fbcbb; | |
--lt-color-gray-500: #88c0d0; | |
--lt-color-gray-600: #81a1c1; | |
--lt-color-gray-700: #5e81ac; | |
--lt-color-gray-800: #4c566a; |