summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2018-09-06 11:34:38 +0200
committerSimon Rettberg2018-09-06 11:34:38 +0200
commitaccf139cab4298bfde792deaa83113253bd5c04a (patch)
tree6d16d7d56db74e233134b0b2048799090e9bfcec
parent[client] New addon system for buttons and menu (diff)
downloadpvs2-accf139cab4298bfde792deaa83113253bd5c04a.tar.gz
pvs2-accf139cab4298bfde792deaa83113253bd5c04a.tar.xz
pvs2-accf139cab4298bfde792deaa83113253bd5c04a.zip
Remove now unused sample config
-rwxr-xr-xsample_configuration/lockDesktop.sh7
-rwxr-xr-xsample_configuration/switchBack.sh10
-rwxr-xr-xsample_configuration/switchToManager.sh14
3 files changed, 0 insertions, 31 deletions
diff --git a/sample_configuration/lockDesktop.sh b/sample_configuration/lockDesktop.sh
deleted file mode 100755
index 8a8f133..0000000
--- a/sample_configuration/lockDesktop.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-# move mouse pointer to the center of the screen to avoid some problems with ghost clicks
-xdotool mousemove --polar 0 0 --sync
-
-# activate a locking scrensaver, xscreensaver, kscreensaver, etc...
-xscreensaver-command --lock
diff --git a/sample_configuration/switchBack.sh b/sample_configuration/switchBack.sh
deleted file mode 100755
index 0fc3039..0000000
--- a/sample_configuration/switchBack.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-# Force vmplayer to desktop 0
-WINDOWS=$(xdotool search --class vmplayer)
-for window in $WINDOWS; do
- wmctrl -i -r $window -t 0
-done
-
-# switch back to desktop 0
-wmctrl -s 0
diff --git a/sample_configuration/switchToManager.sh b/sample_configuration/switchToManager.sh
deleted file mode 100755
index 40d863c..0000000
--- a/sample_configuration/switchToManager.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-# make sure vmplayer is really on workspace 0
-WINDOWS=$(xdotool search --class vmplayer)
-for window in $WINDOWS; do
- wmctrl -i -r $window -t 0
-done
-
-# move PVS-Manager to workspace 1 and focus it
-wt="PVS2 Manager"
-wmctrl -r "$wt" -t 1
-wmctrl -s 1
-wmctrl -a "$wt"
-