diff options
| -rw-r--r-- | config/bash.nix | 2 | ||||
| -rwxr-xr-x | dist/vm.sh | 2 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/config/bash.nix b/config/bash.nix index 03ef601..7af7ee4 100644 --- a/config/bash.nix +++ b/config/bash.nix @@ -42,6 +42,8 @@        fi        bind '"\C-f": "sessionizer\n"' + +      alias poof="rm $HOME/.ssh/known_hosts*"      '';    };  } diff --git a/dist/vm.sh b/dist/vm.sh new file mode 100755 index 0000000..55da48f --- /dev/null +++ b/dist/vm.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +alacritty --title float -o 'window.dimensions = { columns = 80, lines = 40 }' -e bash -c 'virt-manager -c qemu:///system --show-domain-console $(virsh -c qemu:///system list --all --name | fzf)' | 
