30

By default, i3 ignores the Print Screen key available in most keyboards. How can it be activated?

2 Answers2

43

Everything inside i3 needs to be bound and just a minimal set of keys is added/generated inside the default config. Some keys that are not letters can be represented with its keycodes or keysyms. More about this subject here:

Printscreen is the Print keysym.

I personally use gnome-screenshot to that task, since it can crop images, making life easier. Add the following lines to your .config/i3/config or any config file you are using as the i3wm main config file.

#interactive screenshot by pressing printscreen
bindsym Print exec gnome-screenshot -i 
#crop-area screenshot by pressing Mod + printscreen
bindsym $mod+Print exec gnome-screenshot -a

Some people like to use scrot. That is up to you to decide :) . Example:

bindsym Print exec scrot $HOME/Images/`date +%Y-%m-%d_%H:%M:%S`.png
11

To expand on @user34720's answer, if bindsym $mod+Print exec gnome-screenshot -a doesn't work, pass the --release parameter to bindsym

bindsym --release Print exec gnome-screenshot -i
bindsym --release $mod+Print exec gnome-screenshot -a

srabah-m
  • 111
  • 1
  • 2