File: SetTranslucency

package info (click to toggle)
fvwm-crystal 3.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 19,748 kB
  • ctags: 793
  • sloc: sh: 2,815; cs: 880; python: 875; makefile: 212
file content (22 lines) | stat: -rwxr-xr-x 580 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# E17-Bling helper script for FVWM-Crystal
#
# Version:	1.0.0
# Licence: 	GPL 2
#
# Author:	Dominique Michel <dominique_libre@users.sourceforge.net>	
#
# Created:	15/05/2013
# Changed:	15/05/2013
#
# Description:	This function will change the windows translucency
# 	with focus change. Original idea: Gronono on the gentoo forum
#	http://forums.gentoo.org/viewtopic-t-606068.html?sid=5dea73ee0b5eeda5a75999520455e577
# TODO: preferences for the translucency values.

if [ "$1" != "$2" ]; then
        transset -i $1 -m 0.5 -x 0.5
        transset -i $2 -m 1   -x 1
fi