Showing posts with label LXDE. Show all posts
Showing posts with label LXDE. Show all posts

Monday, May 13, 2013

Screenshots in LXDE, Mate, etc.

LXDE does not have a native screen shot feature and imagemagick does a mediocre job of it under Mate (often capturing a region under the window being selected from), and only provides black rectangles under LXDE, so I needed something better. Google quickly led me to scrot, http://pwet.fr/man/linux/commandes/scrot, which works well. Here's my script to capture regions on the screen:

#! /bin/sh
# Time-stamp: <2013-05-13 12:16:50 jdm>
#
# $1 is the directory in which to 
dump the screenshot. Empty 
indicates /tmp.

umask 077

if test -z $1 ; then
  cd /tmp
else
  cd $1
fi

/usr/bin/scrot -s

The above works well, and is much less time-consuming than the menu-driven approach in Mate.

 This post replaces an older one.

Monday, September 10, 2012

Early Impressions of LXDE

I'm using LXDE (Lightweight X11 Desktop Environment) on my laptop. First of all, it seems to be a resurrection of the long dead Unix philosophy: simple tools that do specific things well. Second of all, it makes no sense to use Mint on a laptop until Mint makes whole-disk encryption easier. It's a piece of cake in Lubuntu.

LXDE seems to be missing some very basic things, but it also does some very basic things right. In Mint, there are no themes (okay, maybe if I wanted to spend my life looking through themes designed for 12-year-olds) that provide significant contrast between the window with focus and the other windows. LXDE does this in an attractive fashion. It has panels, rather than the brain-damaged crap the Gnome project is trying to foist on people.

Why am I more willing to spend time adding functionality to LXDE than to figure out how to customize, say, Mate? Mate is a very heavy-weight environment. Overall Mate is well thought-out and well-implemented, and it is available for more secure environments than Mint, but it is yet another attempt to make Linux into a Windows clone.

With a new Mate installation, I have to spend hours uninstall useless crap, disabling useless background daemons, etc. LXDE saves this hassle--I have a machine I can halfway trust before pounding on it for a week.

LXDE is a better idea than Mate, and a much, much better idea than Gnome Shell. It's worth spending time on. Or so I think so far.