[i3] urxvt has black borders...

Hi there
I'm trying out the i3 window manager and it seems to be quite nice except for one little thing that is driving me mad.
urxvt always appears with some black borders around it and I don't know how to remove them.
I really can't understand if the responsible for this behaviour is i3 or urxvt but I noticed that:
- the empty space at the bottom is black too even if I use 'xsetroot -solid "1A1A1A" in my .xinitrc
- the same .Xdefaults in wmii works perfectly without black borders at all.
Is anyone able to help me? Any hint would be much appreciated.
I'm attaching some files that may be important to solve the issue:
~/.xinitrc
#!/bin/sh
# ~/.xinitrc
# Executed by startx (run your window manager from here)
# exec gnome-session
# exec startkde
# exec startxfce4
# ...or the Window Manager of your choice
# add terminus and dina fonts to xfontsel
xset +fp /usr/share/fonts/local
# set background and wallpaper
xsetroot -solid "#1A1A1A"
feh --bg-scale /home/rent0n/.wallpapers/archlinux-zenburn-wide-grey.jpg
# start window manager
exec i3
# exec wmii
# exec dwm
~/.Xdefaults:
! urxvt
urxvt.title: urxvt
urxvt.background: #1A1A1A
urxvt.foreground: #999999
urxvt.cursorColor: #5E468C
urxvt.borderColor: #1A1A1A
urxvt.borderless: false
urxvt.internalBorder: 3
urxvt.externalBorder: 3
urxvt.scrollBar: false
!urxvt.font: -misc-fixed-medium-r-*--12-*-*-*-*-*-iso10646-1
!urxvt.boldFont: -misc-fixed-medium-r-*--12-*-*-*-*-*-iso10646-1
urxvt.font: xft:terminus:pixelsize=12
urxvt.boldFont: xft:terminus:bold:pixelsize=12
! colors
!black
*color0: #333333
*color8: #3D3D3D
!red
*color1: #8C4665
*color9: #BF4D80
!green
*color2: #287373
*color10: #53A6A6
!yellow
*color3: #7C7C99
*color11: #9E9ECB
!blue
*color4: #395573
*color12: #477AB3
!magenta
*color5: #5E468C
*color13: #7E62B3
!cyan
*color6: #31658C
*color14: #6096BF
!white
*color7: #899CA1
*color15: #C0C0C0
~/.i3/config
# This configuration uses Mod1 and Mod4. Make sure they are mapped properly using xev(1)
# and xmodmap(1). Usually, Mod1 is Alt (Alt_L) and Mod4 is Windows (Super_L)
# ISO 10646 = Unicode
# font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
# font -misc-fixed-medium-r-*--12-*-*-*-*-*-iso10646-1
font -xos4-terminus-bold-r-*--12-*-*-*-*-*-iso10646-1
# Use Mouse+Mod4 to drag floating windows to their wanted position
floating_modifier Mod4
# Fullscreen (Mod4+f)
bind Mod4+41 f
# Stacking (Mod4+r)
bind Mod4+27 s
# Tabbed (Mod4+w)
bind Mod4+25 T
# Default (Mod4+e)
bind Mod4+26 d
# Toggle tiling/floating of the current window (Mod4+Shift+Space)
bind Mod4+Shift+65 t
# Go into the tiling layer / floating layer, depending on whether
# the current window is tiling / floating (Mod4+t)
bind Mod4+28 focus ft
# Focus (Mod4+j/k/l/;)
bind Mod4+43 h
bind Mod4+44 j
bind Mod4+45 k
bind Mod4+46 l
# (alternatively, you can use the cursor keys:)
bindsym Mod4+Left h
bindsym Mod4+Down j
bindsym Mod4+Up k
bindsym Mod4+Right l
# Focus Container (Mod1+Mod4+j/k/l/;)
bind Mod1+Mod4+43 wch
bind Mod1+Mod4+44 wcj
bind Mod1+Mod4+45 wck
bind Mod1+Mod4+46 wcl
# (alternatively, you can use the cursor keys:)
bindsym Mod1+Mod4+Left wch
bindsym Mod1+Mod4+Down wcj
bindsym Mod1+Mod4+Up wck
bindsym Mod1+Mod4+Right wcl
# Snap (Mod4+Control+j/k/l/;)
bind Mod4+Control+43 sh
bind Mod4+Control+44 sj
bind Mod4+Control+45 sk
bind Mod4+Control+46 sl
# (alternatively, you can use the cursor keys:)
bindsym Mod4+Control+Left sh
bindsym Mod4+Control+Down sj
bindsym Mod4+Control+Up sk
bindsym Mod4+Control+Right sl
# Move (Mod4+Shift+j/k/l/;)
bind Mod4+Shift+43 mh
bind Mod4+Shift+44 mj
bind Mod4+Shift+45 mk
bind Mod4+Shift+46 ml
# (alternatively, you can use the cursor keys:)
bindsym Mod4+Shift+Left mh
bindsym Mod4+Shift+Down mj
bindsym Mod4+Shift+Up mk
bindsym Mod4+Shift+Right ml
# Move Container (Mod1+Mod4+Shift+j/k/l/;)
bind Mod1+Mod4+Shift+43 wcmh
bind Mod1+Mod4+Shift+44 wcmj
bind Mod1+Mod4+Shift+45 wcmk
bind Mod1+Mod4+Shift+46 wcml
# Workspaces (Mod4+1/2/…)
bind Mod4+10 1
bind Mod4+11 2
bind Mod4+12 3
bind Mod4+13 4
bind Mod4+14 5
bind Mod4+15 6
bind Mod4+16 7
bind Mod4+17 8
bind Mod4+18 9
bind Mod4+19 10
# Move to Workspaces
bind Mod4+Shift+10 m1
bind Mod4+Shift+11 m2
bind Mod4+Shift+12 m3
bind Mod4+Shift+13 m4
bind Mod4+Shift+14 m5
bind Mod4+Shift+15 m6
bind Mod4+Shift+16 m7
bind Mod4+Shift+17 m8
bind Mod4+Shift+18 m9
bind Mod4+Shift+19 m10
# Mod4+Enter starts a new terminal
bind Mod4+36 exec /usr/bin/urxvt
# Mod4+Shift+q kills the current client
bind Mod4+Shift+24 kill
# Mod4+v starts dmenu and launches the selected application
# for now, we don't have a launcher of our own.
bind Mod4+55 exec /usr/bin/dmenu_run -i -fn -xos4-terminus-bold-r-*--12-*-*-*-*-*-iso10646-1 -nb \#1A1A1A -nf \#999999 -sb \#1A1A1A -sf \#31658C
# Mod4+Shift+e exits i3
bind Mod4+Shift+26 exit
# Mod4+Shift+r restarts i3 inplace
bind Mod4+Shift+27 restart
# The IPC interface allows programs like an external workspace bar
# (i3-wsbar) or i3-msg (can be used to "remote-control" i3) to work.
ipc-socket ~/.i3/ipc.sock
# 1-pixel Border
new_window bp
# Colors
# class border background text
client.focused #999999 #999999 #1A1A1A
client.focused_inactive #1A1A1A #1A1A1A #999999
client.unfocused #1A1A1A #1A1A1A #999999
client.urgent #31658C #31658C #999999
bar.focused #999999 #1A1A1A #999999
bar.unfocused #1A1A1A #1A1A1A #999999
bar.urgent #31658C #1A1A1A #999999
# Workspaces
workspace 1 main
workspace 2 www
workspace 3 mail
workspace 4 misc
Thank you very much.

rent0n wrote:I'm forced to move to wmii then, even if it hasn't all the nice features of i3 and configuring it it's quite a mess, at least it seems to manage urxvt perfectly...
You will most probably have those borders in wmii, too. I have them.
It really is an urxvt issue. There is something in the manpages about it, I think (not sure).
I doesn't bother me too much so I just left them there.

Similar Messages

  • 720p video in 1080p timeline has black borders

    Hello,
    I have Premiere Cs6, with Windows 7.
    I want to mix 1080/50p and 720/30p videos, and correctly downsize it to 720/25p in Adobe Media Encoder.
    1. When I choose 720/25p timeline, all the 1080p videos looks like zoomed (the middle of the video image can be seen). The 720p videos are fine
    2. If I choose 1080/25p timeline, the 1080p videos are fine, but the 720p ones has black border on all 4 sides:
    http://img861.imageshack.us/img861/6306/69202278.jpg
    Please help me how to do it correctly, to be able tho get a proper 720/25p video from these sources, without borders.
    Thank you!

    The timeline should match the final output so use a 720p25 timeline.
    If you have a 720p as your output you have a 1280x720 canvas. If you drop a 1920x1080 video on it will be too big. Do as SAFEHARBOR11 said....
    In Premiere Preferences, there is a checkbox for "Default Scale to Frame Size". If you enable that, when you Import clips they will automatically fit the current editing size.
    ...OR for each clip open up the effects->motion and change the scale of the 1080p footage (1280/1920=66.6666%) - it won't divide nicely so you'll have to do 66 instead of 67% so that you don't get black edges.
    As for output frame rate... do you have to do 25fps? If it's not for broadcast - it is my understanding that most PAL countries have BD players that can understand 24fps as well. I say this because maybe you'd be better off retiming the 50i footage to 48i (a 4% slowdown) and thus 24fps. You do this by right clicking and Interpret Footage-> 24fps instead of its 25fps.
    You can then edit between the two cameras without throwing frames on the floor since the 720p30 will 3:2 pulldown to 24fps too.
    BUT, you only need to do that if the shudder from dropping 1 in 25 frames on the floor has a worse look than slowing down the original footage. It is easier if you're editing back and forth with the two cameras to drop those frames but perhaps slowing down would be better for you.
    Some professionals cringe at the idea of throwing frames on the floor, others that the original is slowed down. It's up to you.
    As some food for thought....
    When I was on the DVD authoring team for the "Dune" release in Australia ('98) the telecine of the original film was sped up from 24 to 25fps. We then sped up and pitch shifted back down the 5.1 audio track to match.
    Another example [I didn't work on] is "The Thomas Crown Affair" release in the USA. The title menus must have been done in the UK (or Oz) and not pitch shifted because it has a 4% higher pitched music vs the film. - it's very noticeable because from the root menu it goes straight to the same piano tune in the film and drops a couple tones. (^dink dink dink^.... ^dunk dunk dunk^) In the film itself you have no idea that the feature was [or was not] stretched 4% to fit to 25fps or 30fps (ie 24fps original 3:2 pullup).
    my 2bits.
    Rallymax

  • Monitor has black borders in bootcamp

    Recently purchased monitor has black boarders around the screen in windows, however when i switch to OSX its fine, no borders.
    Also from time to time the screen turns black for a few seconds and comes back on.
    any ideas?

    change the driver and change resolution

  • How do I get clips resized for youtube without extra black borders?

    Hi Ya,
    I have some concert footage that I edited in FCP (some in 4.3, some in 16.9) that I have montaged together to form a "sampler" of what the act in question have done over the years. I want to put this on youtube, which needs a 320x240 frame size so I created a 320x240 sequence, added my montage to this, resized the clip til I was happy and exported. No matter what setting I use to export, I seem to end up with a box that has black borders round the movie instead of the movie filling the 320x240 frame, except when I DON"T specify 320x240 as an export size, in which case I get a movie that looks ok but it's 576x520! (i'm UK based so the 4.3 footage was this size??)
    Any suggestions?
    Many Thanks
    Gareth

    Hi
    this had me stumped for a long time, but i think whats happening is that the quicktime movie player window defaults to a bigger size than 320 x 240, so it shows the movie at its correct sizer in a bigger window. if you resize the window the black sidebars go away. the movie properties say the movie is the correct size, so it should be fine. if you embed it in an html page it plays correctly as well.
    hth
    adam

  • Settings dimensions - can't get rid of black borders

    Hi
    I'm using Final Cut Express 4.0.1. I have a 30sec quicktime movie that I need to import and then add some music too and then export with the same dimensions. The current dimensions are 1024x567. However even when I set dimensions to the custom setting of 1024x567 when exporting I end up with black borders at the top and the bottom of the movie. I think part of the problem is that I need to change settings in FCE before I export as when Im looking at the movie in the 'canvas' box it has those same black borders. However I cant seem find any where to change the main project settings...
    Any help would be much appreciated.
    Thanks

    Hi
    I tried to follow your instructions and this is what it looked like in FCE.
    [IMG]http://i115.photobucket.com/albums/n284/Jampig/Screenshot2010-06-03at131510.png[/IMG]
    When I export it either as anamorphic or something else the black borders are still there.
    The properties of the original clip are
    Dimensions: 1024x576
    codecs: AAC, H.264
    Color profile: HD (1-1-1)
    Is that what you were after?
    Thanks!

  • IStabilize black borders

    Hello all,
    I have recently tried the demo version of iStabilize in iMovie HD5. It works very well and I will buy it if I can remove the black borders that appear around the edges after the stabilizing process has been completed.
    On a previous post Tom Wolsky,(writer of many great books),suggested scaling up the image. Does anyone know how to do this?
    Any help would be much appreciated.

    the stabilize plug-in in the Slick8 package from geethree.com does the zoom-in automatically.. = no black borders..
    demo
    http://geethree.com/slick/galleries/s8demopages/s8stabilize.html
    and iM09's stabilize effect adds no borders too..

  • How to fix black borders around transparent PNG files?

    Hello,
    Recently, iMovie has started putting black borders around transparent PNGs. How can I fix this?
    http://img19.imageshack.us/img19/4668/picture9bt.png

    gndagnor wrote:
    Any way to fix the alpha transparency when importing PNG files to iMovie 09?
    I just know the two options - wrong (8bit) png or that plugin, which in an older version destroyed transparency..
    what also make transparent-to-black is, when you 'manipulate' the imported png, esp. adding a *KenBurns Effect* - that kills transparency instantly.
    for test purposes:
    • create a new project
    • create a new png with some traansparency
    • add new png to new project - same result?
    and just to avoid EVERY problem: your sys preferences/Monitor is set to 'million colors'?

  • Problem rotate Image black borders appear??!!

    Hi I'm using a method to rotate an image file (exactly a buffered image inside the rotate method).
    That works fine, i get a new image which has been rotated but black borders appear!!!
    Is there a way with the renderinghints or something else to remove these borders (or put them in white)??
    here is what I use for the moment :
    g.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
    RenderingHints.VALUE_INTERPOLATION_BICUBIC );
    Any idea would be appreciated...

    I haven't seen that happen. Perhaps your math is off by one? Could you post a minimal program
    that demonstrates this, using a generated image, or an image from an accessible URL?
    To change the color of the "border", you could fillRect() your target image with white first...

  • Large black borders arond Canvas View

    I have footage imported from a Canon XH-A1 at 720 x 480, when I drag it to the Canvas viewer it displays with large black borders around it and any exports look the same. Looks normal in Viewer. Also must be RENDERED to be viewable in Timeline, which did not used to be an issue - something has changed, but I am not sure what!
    Capture preset is DV NTSC 48KHZ, camera is not in HD or wide screen mode. Footage seems to look OK if I import it into iMovie HD, not my preferred editor due to the length of clips being edited.

    David Kuhnen wrote:
    Studio Xs answer is correct but let me rephrase it;
    No you may not. the TOU specifically prohibits rephrasing X.
    From the ForumTOU ...
    *How do I reply to a message?*
    Click Reply next to the message to which you'd like to reply. In the resulting page, type your message in the Message box.
    If you want to quote specific text from the original message, click Quote Original to add all the text from the original message to the Message box. You can edit that text if you want to quote only specific parts of the original message.
    If Studio X has posted a reply, you +*MAY NOT*+ rephrase the post.
    (bold and italics in the original.)
    lol.
    x

  • Black borders forming around screen

    HELP! My 14" iBook G4 (just over a year old) is forming black borders around the display screen. Is there a freeware or tweak to get rid of it by extending the screen like Windows has? I tried to take a screenshot but it doesn't appear in it.

    Woohoo - I can't believe that this was the problem, but search is a wonderful thing >> answer is here...
    Mike N. (nahyunil), "icons" #1, 10:49am Jul 15, 2005
    Sorry for posting this in a few places, but I was desperate for a fix!

  • I plugged my macbook pro into an external monitor, then unplugged it later and now it is stuck with black borders on top and bottom and zoomed out like it is still on the monitor. How do I fix it?

    I started using my external monitor with my macbook pro and as soon as I plug it in it to the monitor it adjusts the screen by zooming out a bit and creating about 3/4 of an inch black borders on the top and bottom of the screen. But these dont show up on the monitor so I assumed it was fine. But when I took it off the monitor, the borders were still there like it was still on the monitor. Any hellp? Its starting to mess with my eyes haha.

    Hi aefulcher,
    It sounds like you had the external display set to mirror the internal display so the resolution(s) were changed to match each other.
    OS X: How to use multiple displays with your Mac in Mountain Lion and earlier
    http://support.apple.com/kb/ht5019
    Check if the current resolution matches your screen's natiive resolution.
    Thank you for visiting Apple Support Communities.
    Nubz

  • Black Borders when playing games

    Hey,
    so lately, I got a new HP Envy TouchSmart laptop. Everything is alright except: When I run games at a native ( 1920x1080p ) resolution, everything is fine. But when I lower down the resolution,  on my screen, black borders apear all around the sides. So this means, that it doesn't stretch. Altough, if I set the games mode to Borderless, it fixes the problem, but still it's anoying in some games.
    I tried many ways to fix this ( which I found from the internet ) : Trying to lower the resolution in desktop and setting Scale On Fullscreen; updating the Intel drivers, downloading apps...
    I really need help with this, as not all of the games have a Borderless mode ( eg. AC4 ). 
    System Specifications:
    Intel i7 4702MQ @2.2ghz boost up to 3.2ghz
    Intel HD Graphics 4600 ( Integrated ) - Driver 10.18.10.3960
    Nvidia 750M  ( Dedicated )
    8gb ram
    TouchSmart 
    Thanks for any information, I would really like to fix this

    Hi there @Andrej27 
    Welcome to the HP Support Forums!
    I understand that you are having some trouble in some games with black borders. Check out this video I found on youtube that should help.
    How to remove black bars/edges in games Intel HD, Nvidia, ATI Graphics | Quick Tutorial
    Let me know if that works for you.
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • I am trying to remove two full page black borders from my Pages document and when I click on them they are greyed out

    I am trying to remove 2 full page size black borders in my pages document and whn i click on them they show greyed x's but i cannot manipulate or remove them.   What to do?

    John,
    While the grayed x corners are showing, Arrange > Unlock.
    Now you will be able to manipulate or delete the borders.
    Jerry

  • My new iPhone 5 has black and white lines on the screen. It's not been damaged. I've tried turning it off but this does not solve the problem? Please help.

    My new iPhone 5 has black and white lines on the screen. It's not been damaged. I've tried turning it off but this does not solve the problem? Please help. I can't find my answer on the Internet.

    By far the most common problem hardware-wise seems to be scuffs on the aluminium. Yours is the first report of a faulty screen I've seen.
    If you use the same Apple ID on both devices it'll sync whatever you want it to - music/apps/photos/messages/etc.
    I've just switched from a Galaxy S3 to iPhone 5 (having already owned an iPad for a while) so I'm in a similar position!

  • Have a MacBook Pro. the computer will not boot up, the screen has black and white stripes and multi color bands as well.

    Have a MacBookPro. The computer will not boot up. the screen has black and white bands with multi color bands as well.

    Yeah it's dead. Take it to an Apple Genius Bar and have it checked out. Then buy a new one.

Maybe you are looking for

  • Problem with Javascript in JSP

    Hi Guys, I have this problem with my JSP page. I am using a javascript function which calls a function within a bean. The problem that I have is that I get an error when trying to call the following function : function refDataTypes_onchange() Vector

  • Deleted playlist.....help!

    Hey all, i have just purchased an nano. i had the kid across the road put songs onto it for me because i am computer impared. Some how(dont ask me how) i wiped off my playlist. Now when i try and sync music it keeps telling me that, "songs on the ipo

  • Pls Help Clarify

    Hello All, I need help on the below. I have to setup a payroll for a company and it has 3 locations which are seperately handled by different people but all under one Business Group. Please let me know 1. If i would need to create just one responsibi

  • After the latest update my ipad2 won´t restart

    I downloaded the latest update and since then my ipad won´t reboot. I get stuck at the apply symbol with the bar showing 1/4 of the update being installed. any ideas how to solve that?

  • My MacBook Pro freezes after opening any application or trying to update

    HELP! I haven't used my mac for a while and when I booted it up, I did all my usual things when I didn't use my mac for a long time, like opening software update. But software update froze after trying to download a firmware and iTunes update. I thou