diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-26 17:54:12 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-26 17:54:12 +0100 |
commit | dc93320c2d7ec86b3947c8528a95d574f49fa39e (patch) | |
tree | e6e3a7f9120655ca048e88454d9eadbbe13bd4b1 | |
parent | more intro text (diff) | |
download | unstickpixels-dc93320c2d7ec86b3947c8528a95d574f49fa39e.tar.gz unstickpixels-dc93320c2d7ec86b3947c8528a95d574f49fa39e.tar.bz2 unstickpixels-dc93320c2d7ec86b3947c8528a95d574f49fa39e.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
-rwxr-xr-x | unstickpixels | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unstickpixels b/unstickpixels index 58fe7c4..b0fc8eb 100755 --- a/unstickpixels +++ b/unstickpixels @@ -1,6 +1,6 @@ #!/usr/bin/env python ## -# unstickpixels – screen loop to try to unstick dead pixels +# unstickpixels – screen loop to try to unstick stuck pixels # # Copyright © 2013, 2015 Mattias Andrée (maandree@member.fsf.org) # @@ -33,7 +33,7 @@ sleep = 0 if len(sys.argv) < 2 else int(sys.argv[1]) (height, width) = Popen(['stty', 'size'], stdout=PIPE).communicate()[0].decode('utf-8', 'replace').split(' ') (height, width) = (int(height), int(width)) -COPYING = ['unstickpixels – screen loop to try to unstick dead pixels', +COPYING = ['unstickpixels – screen loop to try to unstick stuck pixels', '', 'Copyright © 2013, 2015 Mattias Andrée (maandree@member.fsf.org)', '', |