Add issue and bugfixing

This commit is contained in:
Stephan Raabe
2023-04-04 11:22:52 +02:00
parent 559c92ff4b
commit ed5fe87fa5
5 changed files with 38 additions and 10 deletions

View File

@@ -37,8 +37,8 @@ tmp=$(virsh --connect qemu:///system list | grep " win11 " | awk '{ print $3}')
if ([ "x$tmp" == "x" ] || [ "x$tmp" != "xrunning" ])
then
virsh --connect qemu:///system start win11
echo "Waiting 20 sec for Windows 11 startup..."
countdown "00:00:20"
echo "Waiting 25 sec for Windows 11 startup..."
countdown "00:00:25"
fi
echo "Starting xfreerdp now..."

View File

@@ -12,5 +12,8 @@
# Select text file
selected=$(ls -1 ~/private/templates | rofi -dmenu -p "Select the template")
# Add content to clipboard
xclip -sel clip ~/private/templates/$selected
if [ "$selected" ]; then
# Add content to clipboard
xclip -sel clip ~/private/templates/$selected
fi