Re: [hackers] [sxiv] Pass given file names to key-handler instead of real paths || Bert Münnich

2017-01-07 Thread Quentin Rameau
> diff --git a/exec/key-handler b/exec/key-handler > index 03d7499..439ab2e 100644 > --- a/exec/key-handler > +++ b/exec/key-handler > @@ -18,7 +18,7 @@ readonly TMPFILE="/tmp/sxiv.$$" > > rotate() { > degree="$1" > - while read file; do > + tr '\n' \0' | xargs -0 realpath | sort |

[hackers] [dwm] [PATCH 3/3] Don't restrict snap in mousemove

2017-01-07 Thread Markus Teich
This also fixes a bug where client windows only switch to floating mode when the mouse is dragged in one specific direction. --- Heyho, this patch is also the same as submitted previously. I also just added it to this patch series for a better overview of the pending patches. --Markus dwm.c

[hackers] [dwm] [PATCH 2/3] Button passthrough when client is not focused

2017-01-07 Thread Markus Teich
Before this change it is not possible to press a button in a client on the first click if the client is not yet focused. The first click on the button would only focus the client and a second click on the button is needed to activate it. This situation can occur when moving the mouse over a client

[hackers] [dwm] cleanup and bugfixes

2017-01-07 Thread Markus Teich
Heyho, this thread makes all my other recently published dwm patches obsolete as they are unified in this patch series. Please use `git am` on the separate patch mails when merging them upstream to ensure the commit message is kept intact. --Markus

[hackers] [dwm] [PATCH 1/3] cleanup

2017-01-07 Thread Markus Teich
- unify multi-line expression alignment style. - unify multi-line function call alignment style. - simplify client moving on monitor count decrease. - clarify comment for focusin(). - remove old confusing comment about input focus fix in focusmon(). The explanation is already in the old commit me

[hackers] [sxiv] Pass given file names to key-handler instead of real paths || Bert Münnich

2017-01-07 Thread git
:= git-20161228 +VERSION := git-20170107 PREFIX:= /usr/local MANPREFIX := $(PREFIX)/share/man diff --git a/exec/key-handler b/exec/key-handler index 03d7499..439ab2e 100644 --- a/exec/key-handler +++ b/exec/key-handler @@ -18,7 +18,7 @@ readonly TMPFILE="/tmp/sxiv.$$"