my nixos dotfiles :3 (git.koi.rip mirror) git.koi.rip/koi/dotfiles
linux dotfiles neovim nixos catppuccin
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: some scripts acting up

adam 219e0af2 63378926

+4 -3
+3 -2
external/scripts/ff.sh
··· 7 7 exit 0 8 8 fi 9 9 10 - if [[ -n $FF_NO_KITGET ]] || [[ ! $(kitget --square -o "$kitget_output" &>/dev/null) ]]; then 10 + kitget_output="/tmp/$(date +%s)" 11 + 12 + if [[ -n $FF_NO_KITGET ]] || [[ ! $(kitget --square -o "$kitget_output") ]]; then 11 13 fastfetch --logo nixos_small --logo-padding-top 3 "$@" 12 14 else 13 - kitget_output="/tmp/$(date +%s)" 14 15 fastfetch --kitty "$kitget_output" "$@" 15 16 rm -f "$kitget_output" 16 17 fi
+1 -1
external/scripts/nixdev.sh
··· 4 4 5 5 export FF_SKIP=1 6 6 7 - if [[ "$(nix flake show)" == *'devShells' ]]; then 7 + if [[ "$(nix flake show 2>/dev/null)" =~ 'devShells' ]]; then 8 8 nix develop -c zsh 9 9 else 10 10 nix-shell --run zsh "$@"