Update
[khome.git] / home / .xlaunch.d / xbindkeys
... / ...
CommitLineData
1#! /bin/bash
2
3set -e
4
5# XXX Since this script is also named xbindkeys, we avoid suicide by:
6# 1. not using killall;
7# 2. using "command" (or "cmd") instead of "comm".
8ps -eo pid,command | awk '$2 ~ "^xbindkeys" {print $1}' | xargs -I% kill %
9# xbindkeys -n -v
10xbindkeys -n \
112> >(
12 while read -r line
13 do
14 notify-send -u low 'xbindkeys' "$line"
15 done
16)
This page took 0.027561 seconds and 5 git commands to generate.