SEARCH

Enter your search query in the box above ^, or use the forum search tool.

You are not logged in.

#1 2010-01-17 01:31:44

whiterabbit
New Member
Registered: 2010-01-17
Posts: 7

How to remove window borders systemwide?

Hi everyone,

Im new to CrunchBang and Linux in general....

I really freakin' love crunchbang tho because I am poor and all my hardware is from 2003... LoL

Anyway can anyone tell me how to make a permanent config to remove the border from all my windows?

I have no clue where to start...

2010-01-16--1263690312_1280x1024_sc.png

thanks!

Offline

Be excellent to each other!

#2 2010-01-17 02:11:08

whiterabbit
New Member
Registered: 2010-01-17
Posts: 7

Re: How to remove window borders systemwide?

Ok, I just found it....It was in Obconf under Appearance, Windows, uncheck windows retain a border when undecorated... smile

Last edited by whiterabbit (2010-01-17 02:32:25)

Offline

#3 2010-01-17 02:16:02

pvsage
Internal Affairs
From: North Carolina
Registered: 2009-10-18
Posts: 13,282

Re: How to remove window borders systemwide?

Similar question:  Is it possible to have all applications open undecorated?

Offline

#4 2010-01-17 02:30:07

whiterabbit
New Member
Registered: 2010-01-17
Posts: 7

Re: How to remove window borders systemwide?

^^^

Yeah That !!!

Offline

#5 2010-01-17 02:44:00

pvsage
Internal Affairs
From: North Carolina
Registered: 2009-10-18
Posts: 13,282

Re: How to remove window borders systemwide?

At the bottom of rc.xml you can specify whether specific applications will be opened with or without decorations, but I can't find a global option.

EDIT:

    <application name="*">
      <decor>no</decor>
    </application>

does the trick.  This can, however, cause some trouble with programs like Tgif which don't have a "maximize" option in their menus.  Also, if you don't have borders, you have nothing to grab onto to resize windows.

Last edited by pvsage (2010-01-17 02:54:50)

Offline

#6 2010-01-17 04:15:35

whiterabbit
New Member
Registered: 2010-01-17
Posts: 7

Re: How to remove window borders systemwide?

AWESOME..thanks, so beautifully minimal...

Yeah I'll just use  <decor>no</decor> for terminator,

other apps I'll un-decorate manually as needed.  wink

Last edited by whiterabbit (2010-01-17 04:17:53)

Offline

#7 2010-01-20 17:38:33

kriptoz
New Member
Registered: 2010-01-20
Posts: 1

Re: How to remove window borders systemwide?

Gonna tweak it too..

big_smile

Offline

#8 2010-01-21 15:46:59

pitje
#! Junkie
From: me to you
Registered: 2009-02-10
Posts: 438
Website

Re: How to remove window borders systemwide?

pvsage wrote:

At the bottom of rc.xml you can specify whether specific applications will be opened with or without decorations, but I can't find a global option.

EDIT:

    <application name="*">
      <decor>no</decor>
    </application>

does the trick.  This can, however, cause some trouble with programs like Tgif which don't have a "maximize" option in their menus.  Also, if you don't have borders, you have nothing to grab onto to resize windows.

moving and resizing windows with keyboard and mouse:
moving windows: keep <ALT> and primary mousebutton pressed while moving the mouse
resizing windows: keep <ALT> and alternate mousebutton pressed while moving the mouse


oh yeah? well, your momma dresses you funny and you need a mouse to delete files

Offline

#9 2010-02-21 03:06:53

guriinii
#! Member
From: UK
Registered: 2010-02-20
Posts: 74

Re: How to remove window borders systemwide?

WOW, this is awesome!

I love #!


#!Crunchbang - an inverted wall of learning, definitely no curve!

Offline

#10 2010-02-21 08:50:32

iggykoopa
Script Master
Registered: 2008-12-13
Posts: 1,486

Re: How to remove window borders systemwide?

Once you get used to having no window borders though you start walking towards the dark path of tiling wm's.....Mwuahahahahaha


I say never be complete, I say stop being perfect, I say lets evolve, let the chips fall where they may.

Offline

#11 2010-03-01 21:39:59

guriinii
#! Member
From: UK
Registered: 2010-02-20
Posts: 74

Re: How to remove window borders systemwide?

iggykoopa wrote:

the dark path of tiling wm's

wm? Explain please, I'm still new to crunchbang.


#!Crunchbang - an inverted wall of learning, definitely no curve!

Offline

#12 2010-03-01 21:54:08

FiniteStateMachine
Part of the Machine
From: Ontario, Canada
Registered: 2009-06-29
Posts: 1,489

Re: How to remove window borders systemwide?

guriinii wrote:
iggykoopa wrote:

the dark path of tiling wm's

wm? Explain please, I'm still new to crunchbang.

wm = window manager (what controls and looks after the positioning of windows etc.)
Openbox is the window manager for #! 9.04
xfwm is the window manager for XFCE for example,
and awesome is an example of a tiling window manager (that is, as i understand it, each window is given a set space to appear it, its not floaty like other window managers)


just call me...
~FSM~

Offline

#13 2010-03-02 06:00:36

iggykoopa
Script Master
Registered: 2008-12-13
Posts: 1,486

Re: How to remove window borders systemwide?

yup a tiling window manager more efficiently uses the space on your screen, I've been using Xmonad a lot lately, but am back to regular gnome for a little while because some java apps and skype didn't play nice. If I can find a way to get them to work better I'll go back, I really liked it.


I say never be complete, I say stop being perfect, I say lets evolve, let the chips fall where they may.

Offline

#14 2010-03-02 14:26:57

jmbarnes
#! Junkie
Registered: 2009-05-04
Posts: 250

Re: How to remove window borders systemwide?

If you're not quite ready for the tiling window manager but want to get something of the feel check out http://pytyle.com/wiki/Main_Page. Its a python daemon that runs in openbox (and others) that gives you the ability to switch tiling on and off.

I use it on occassion--though I'm more reliant on the "GrowToEdge" feature in openbox which looks something like this:

  <keybind key="S-Right">
      <action name="GrowtoEdgeEast">
        </action>
    </keybind>
    <keybind key="S-Up">
      <action name="GrowtoEdgeNorth">
        </action>
    </keybind>
    <keybind key="S-Left">
      <action name="GrowtoEdgeWest">
        </action>
    </keybind>
    <keybind key="S-Down">
      <action name="GrowtoEdgeSouth">
        </action>
    </keybind>

Obviously if you like using Shift-Direction to select lots of files you'll want to rename the shortcuts.


IRC: PizzaAndWine     Script bits: Incremental Backup | Sleep Timer

Offline

#15 2010-07-02 17:28:30

whiterabbit
New Member
Registered: 2010-01-17
Posts: 7

Re: How to remove window borders systemwide?

oops, nevermind, total brain-fart moment...

Last edited by whiterabbit (2010-07-02 18:19:02)

Offline

Board footer

Powered by FluxBB

Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.

Debian Logo