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/sh | |
name=$1 | |
case "$name" in | |
speedcrunch) | |
win_ids=$(xdotool search --classname "SpeedCrunch") | |
visible_win="" | |
hidden_win="" |
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
# Window Navigation | |
Mod j / k : Focus next / prev window | |
Mod Enter : Move to master | |
Mod Tab : Prev tag | |
# Window Management | |
Mod h / l : Shrink / Grow master | |
Mod Shift c : Close window | |
Mod Shift Space : Toggle float | |
Mod Shift f : Fullscreen |
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
{ lib, pkgs, ... }: | |
let | |
# Function to wrap a package with custom environment variables | |
makeWrappedPackage = pkg: envVars: pkgs.stdenv.mkDerivation { | |
name = "env-wrap-${pkg.name}"; | |
nativeBuildInputs = [ pkgs.makeWrapper ]; | |
buildCommand = '' | |
mkdir -p $out/bin | |
for exe in ${lib.getExe pkg}; do |
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
{ lib, pkgs, ... }: | |
let | |
# Function to wrap a package with custom environment variables | |
makeWrappedPackage = pkg: envVars: pkgs.symlinkJoin { | |
name = "env-wrap-${pkg.pname or pkg.name}"; | |
paths = [ pkg ]; # Symlink all files form the original | |
buildInputs = [ pkgs.makeWrapper ]; | |
postBuild = '' | |
for exe in ${lib.getExe pkg}; do |
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 | |
# CHANGE THIS | |
ACTUAL_EZA=/usr/local/bin/_eza | |
display_time="modified" | |
sort_time="" | |
args=() | |
while [ "$#" -gt 0 ]; do |
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
{ | |
description = "Home Manager configuration"; | |
inputs = { | |
# nixpkgsUnstable.url = "github:nixos/nixpkgs/nixos-unstable"; | |
nixpkgs.url = "github:nixos/nixpkgs/release-24.11"; | |
systems.url = "github:nix-systems/default"; | |
catppuccin.url = "github:catppuccin/nix"; | |
ghostty.url = "github:ghostty-org/ghostty"; | |
homeManager = { |
OlderNewer