aboutsummaryrefslogtreecommitdiff
path: root/gui/pkgs/uictrl.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-02-15 22:27:32 +0100
committerAdrian Kummerlaender2019-02-15 22:27:32 +0100
commit18425fd98eae360ab4af07abe724658875e732ec (patch)
tree2d2db1a6a99cf9bcda4b902f51fbe0ddd697a06f /gui/pkgs/uictrl.nix
parent5d9a1fbfb0ccab88a8e6e00cbe5e9f1dc06a915d (diff)
downloadnixos_home-18425fd98eae360ab4af07abe724658875e732ec.tar
nixos_home-18425fd98eae360ab4af07abe724658875e732ec.tar.gz
nixos_home-18425fd98eae360ab4af07abe724658875e732ec.tar.bz2
nixos_home-18425fd98eae360ab4af07abe724658875e732ec.tar.lz
nixos_home-18425fd98eae360ab4af07abe724658875e732ec.tar.xz
nixos_home-18425fd98eae360ab4af07abe724658875e732ec.tar.zst
nixos_home-18425fd98eae360ab4af07abe724658875e732ec.zip
Add custom script for cycling workspaces in touchegg
Diffstat (limited to 'gui/pkgs/uictrl.nix')
-rw-r--r--gui/pkgs/uictrl.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/gui/pkgs/uictrl.nix b/gui/pkgs/uictrl.nix
new file mode 100644
index 0000000..0c965ad
--- /dev/null
+++ b/gui/pkgs/uictrl.nix
@@ -0,0 +1,9 @@
+{ stdenv, pkgs, ... }:
+
+pkgs.writeTextFile {
+ name = "uictrl";
+ executable = true;
+ destination = "/bin/uictrl";
+
+ text = builtins.readFile ./bin/uictrl.sh;
+}