zmiana konfiguracji na wayland i sway :love:

This commit is contained in:
2021-07-06 21:53:39 +02:00
parent f19d3fdaec
commit 1acfd0bb41
32 changed files with 1019 additions and 39 deletions

View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
## Shows a dropdown menu to start, stop or view the status of screensharing
case "$(echo -e " Start\n Stop\n Status" | bemenu-run.sh -l 4 -p "Screensharing:")" in
" Start") screenshare.sh ;;
" Stop") screenshare.sh stop ;;
" Status") screenshare.sh is-recording ;;
esac