You are not logged in.
How do I change the wallpaper and make windows transparent ( ~ 20% ) ?
Have been Googl'ing for a while now but still have no clue on how to achieve it
Offline
hsetroot, xsetroot, feh, whatever floats your boat.
Window transparency: xcompmgr or cairo-compmgr.
Offline
Setting wallpaper:
1. Install feh
$ sudo pacman -S feh
2. Set wallpaper
$ feh --bg-scale foobar.jpg
Transparent windows:
1. Install compositioning stuff
$ pacman -S transset-df xcompmgr
2. Run xcompmgr (and add to your .xinitrc):
$ xcompmgr &
3. Chose transparency (this example is 50% transparency)
$ transset .50
4. Click the window you want to be transparent
How's my programming? Call 1-800-DEV-NULL
Offline
Thank you! And how would I set terminals to be transparent by default ? xcompmgr can be started automatically but transset requires user input
Last edited by SemiBz (2010-03-04 10:32:48)
Offline
Thank you! And how would I set terminals to be transparent by default ? xcompmgr can be started automatically but transset requires user input
What terminal do you use? urxvt can set transparency in the Xdefaults file.
How's my programming? Call 1-800-DEV-NULL
Offline
> What terminal do you use? urxvt can set transparency in the Xdefaults file.
Or, if you don't like fiddling with Xdefaults file, you can simply make urxvt transparent by executing it like "urxvt -tr -sh 20", where the number represents the transparency level. However, this is only pseudo transparency, but I like it better than resource-consuming compositing.
Offline
SemiBz wrote:Thank you! And how would I set terminals to be transparent by default ? xcompmgr can be started automatically but transset requires user input
What terminal do you use? urxvt can set transparency in the Xdefaults file.
> What terminal do you use? urxvt can set transparency in the Xdefaults file.
Or, if you don't like fiddling with Xdefaults file, you can simply make urxvt transparent by executing it like "urxvt -tr -sh 20", where the number represents the transparency level. However, this is only pseudo transparency, but I like it better than resource-consuming compositing.
Will give it a try. I'm not against .Xdefaults - just haven't used it that much and know only the basics ( color schemes )
Offline
Here's my xdefaults for transparent white on black urxvt. It also underlines links and opens them in ff.
URxvt*termName: rxvt
URxvt.buffered: true
URxvt.background: black
URxvt.foreground: white
URxvt.cursorColor: green
URxvt.underlineColor: red
URxvt.scrollBar: False
URxvt.perl-ext: default,matcher
URxvt.urlLauncher: /usr/bin/firefox
URxvt.matcher.button: 1
URxvt.transparent: True
URxvt.shading: 50
Offline