www.duckland.org/content/post/2006/11/200611screen-saver-yes.md
2019-06-22 23:45:50 -05:00

26 lines
753 B
Markdown

+++
date = "2006-11-23T17:11:00-07:00"
title = "Screen Saver? Yes!"
categories = ["software"]
tags = ["cli","screensaver"]
+++
Screen Saver? Yes!
==================
So, a while back I found a screensaver which is meant for the command\
line. It is called [tss](http://www.pulia.nu/tss/). The\
latest version is 0.8.1, and it is looking pretty cool.
Under screen 4.0 or higher, there is a command called idle which is\
set in seconds. By default, it uses screen's built in lockscreen\
function, but if you define the environment variable LOCKPGR, then you\
can call something else. I have it call a the following script:
#!/bin/bash
tss -r
exec vlock -a
This will lock my screen after a set time, and give me a nice thing to\
look at.