aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/modules/workstation/ui/i3/core/tools
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-12-25 15:48:19 +0100
committerMx Kookie <kookie@spacekookie.de>2020-12-25 15:48:19 +0100
commit5bbf8cc19b5db380c706344840374b51bcb2be97 (patch)
treedaa234170d4fb7588c60c2dd59de4a399e70ef66 /infra/libkookie/modules/workstation/ui/i3/core/tools
parent49b086193f307792421b36eb164999303231c376 (diff)
libkookie: i3: various updates to fonts, init config, and keybinding
Diffstat (limited to 'infra/libkookie/modules/workstation/ui/i3/core/tools')
-rw-r--r--infra/libkookie/modules/workstation/ui/i3/core/tools/i3-scrcap.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/infra/libkookie/modules/workstation/ui/i3/core/tools/i3-scrcap.nix b/infra/libkookie/modules/workstation/ui/i3/core/tools/i3-scrcap.nix
index 7f23ef651a9d..b42f1061c24b 100644
--- a/infra/libkookie/modules/workstation/ui/i3/core/tools/i3-scrcap.nix
+++ b/infra/libkookie/modules/workstation/ui/i3/core/tools/i3-scrcap.nix
@@ -7,10 +7,10 @@
# TODO: this is broken and I don't know why...
-{ pkgs, ... }: with pkgs; writeShellScript "libkookie-i3-move" ''
+{ pkgs, ... }: with pkgs; writeShellScript "libkookie-i3-scrcap" ''
echo "Taking screenshot at $(date)" >> /home/.local/scrcap.log
- echo "${scrot}/bin/scrot" >> /home/.local/scrcap.log
+ echo "${gnome3.gnome-screenshot}/bin/gnome-screenshot" >> /home/.local/scrcap.log
- ${scrot}/bin/scrot -D :0 -s >> /home/.local/scrcap.log
+ ${gnome3.gnome-screenshot}/bin/gnome-screenshot -a >> /home/.local/scrcap.log
echo "scrot exit: $?" >> /home/.local/scrcap.log
''