aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-26 17:54:12 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-26 17:54:12 +0100
commitdc93320c2d7ec86b3947c8528a95d574f49fa39e (patch)
treee6e3a7f9120655ca048e88454d9eadbbe13bd4b1
parentmore intro text (diff)
downloadunstickpixels-dc93320c2d7ec86b3947c8528a95d574f49fa39e.tar.gz
unstickpixels-dc93320c2d7ec86b3947c8528a95d574f49fa39e.tar.bz2
unstickpixels-dc93320c2d7ec86b3947c8528a95d574f49fa39e.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
-rwxr-xr-xunstickpixels4
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)',
'',