summaryrefslogtreecommitdiff
path: root/launch
diff options
context:
space:
mode:
Diffstat (limited to 'launch')
-rwxr-xr-xlaunch/dmenu_runapp5
-rwxr-xr-xlaunch/virt6
2 files changed, 8 insertions, 3 deletions
diff --git a/launch/dmenu_runapp b/launch/dmenu_runapp
new file mode 100755
index 0000000..2de77f4
--- /dev/null
+++ b/launch/dmenu_runapp
@@ -0,0 +1,5 @@
+#!/bin/sh
+apps=/usr/share/applications
+name="$(grep -h -m1 '^Name=' $apps/* | cut -d'=' -f2- | sort | uniq | dmenu "$@")"
+#$(grep '^Exec=[^%]*' -o -m1 $(grep -l -m1 "$name" $apps/*) | cut -d'=' -f2-) &
+gtk-launch $(basename `grep -l -m1 "$name" $apps/*` .desktop) &
diff --git a/launch/virt b/launch/virt
index f1035a0..9706106 100755
--- a/launch/virt
+++ b/launch/virt
@@ -10,15 +10,15 @@ startvm() {
-m $(halfram) \
-smp $(halfthreads) \
-net nic \
- -nographic \
- -vga none \
+ -display sdl,gl=on \
-audiodev pa,id=pa1,server=/run/user/1000/pulse/native \
-soundhw all \
-boot menu=on \
-drive file="$virtdir/$1.img" \
; }
+ #-vga none \
+ #-nographic \
- #-display sdl,gl=on \
vms="$(ls $virtdir)"
[ -n "$1" ] && vm="$1" || vm=$(echo "$vms" | sed 's/\.img//' | dmenu -p "Choose Virtual Machine Image or Enter Name for New Virtual Machine")