diff --git a/modules/home.nix b/modules/home.nix index d08319c..ccc5f11 100644 --- a/modules/home.nix +++ b/modules/home.nix @@ -18,6 +18,10 @@ ".wp/fuji.png".source = ./raw/wp/fuji.png; ".wp/orbit.png".source = ./raw/wp/orbit.png; ".wp/hollow_knight.png".source = ./raw/wp/hollow_knight.png; + ".wp/ios.png".source = ./raw/wp/ios.png; + ".wp/manga.png".source = ./raw/wp/manga.png; + ".wp/bg.png".source = ./raw/wp/bg.png; + ".wp/wolf.png".source = ./raw/wp/wolf.png; }; }; } diff --git a/modules/nix/bash.nix b/modules/nix/bash.nix index 426d780..52e6917 100644 --- a/modules/nix/bash.nix +++ b/modules/nix/bash.nix @@ -13,7 +13,7 @@ }; shellAliases = { http = "python3 -m http.server"; - rm = "rm -rfv"; + rm = "rm $@ -v -I"; ls = "${pkgs.eza}/bin/eza -l --icons"; cp = "cp -rv"; mv = "mv -v"; @@ -29,8 +29,7 @@ ]; initExtra = '' eval "$(fzf --bash)" - PS1="\w % " - + complete -cf doas ''; }; }; diff --git a/modules/nix/wm/sway/sway.nix b/modules/nix/wm/sway/sway.nix index acc20a7..b4ad418 100644 --- a/modules/nix/wm/sway/sway.nix +++ b/modules/nix/wm/sway/sway.nix @@ -22,7 +22,7 @@ } ]; startup = [ - { command = "${pkgs.swaybg}/bin/swaybg -i $HOME/.wp/orbit.png"; } + { command = "${pkgs.swaybg}/bin/swaybg -i $HOME/.wp/ios.png"; } ]; gaps = { outer = 5; diff --git a/modules/raw/wp/bg.png b/modules/raw/wp/bg.png new file mode 100755 index 0000000..78436a9 Binary files /dev/null and b/modules/raw/wp/bg.png differ diff --git a/modules/raw/wp/ios.png b/modules/raw/wp/ios.png new file mode 100755 index 0000000..9bd609b Binary files /dev/null and b/modules/raw/wp/ios.png differ diff --git a/modules/raw/wp/manga.png b/modules/raw/wp/manga.png new file mode 100755 index 0000000..0e78feb Binary files /dev/null and b/modules/raw/wp/manga.png differ diff --git a/modules/raw/wp/wolf.png b/modules/raw/wp/wolf.png new file mode 100755 index 0000000..cdaf39a Binary files /dev/null and b/modules/raw/wp/wolf.png differ