You are not logged in.

#476 2009-08-14 13:06:28

Strom
Member
Registered: 2009-08-13
Posts: 6

Re: uzbl. A browser that adheres to the unix philosophy.

@Sakurina thanks for the info. However no luck, even a simple css as below does not work sad
If you manage to set a css some day, let me know!


a:link {
color: #0000ff !important;
background-color: #ffffff !important;
text-decoration: underline !important;
}

a:visited {
color: #ff00ff !important;
background-color: #ffffff !important;
text-decoration: line-through !important;
}

Offline

#477 2009-08-14 18:47:00

N30N
Member
Registered: 2007-04-08
Posts: 273

Re: uzbl. A browser that adheres to the unix philosophy.

Strom wrote:
set stylesheet_uri = /home/strom/.uzbl/style.css

You need to use the file URI scheme eg.

set stylesheet_uri = file://$HOME/.uzbl/style.css

Offline

#478 2009-08-15 13:00:41

Strom
Member
Registered: 2009-08-13
Posts: 6

Re: uzbl. A browser that adheres to the unix philosophy.

Thank you N30N, you made my day! wink

For those interested, below is a quick template that bother changing the text and background color of a whole webpage. It also specifies the color of the first four levels of title and of the hyperlinks.

* {
    color:          #777777 !important;
    background:        #111111 !important;
}
h1 {
    color:          #BB0000 !important;
}
h2 {
    color:          orange !important;
}
h3 {
    color:          #00BB00 !important;
}
h4 {
    color:          #BBBB00 !important;
}
a:link {
    text-decoration:    none;
    font-weight:    bold;
    color:    #008888 !important;
    background:    none !important;
}
a:visited {
    text-decoration:    none;
    font-weight:    bold;
    color:    #880088 !important;
    background:    none !important;
}

Now my eyes can relax... cool

Offline

#479 2009-08-16 12:54:55

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: uzbl. A browser that adheres to the unix philosophy.

jt512 wrote:

I apologize if this has been asked before. I tried to search for the answer and couldn't find it.

My question is, is there be a way to bind keys to emacs-style editing commands, such as Ctl-a and Ctl-e for moving the cursor to the beginning and the end of a line, respectively, while in insert mode?

Jay

Hello I just find out how to do that just press end key to go end of the current line of text and home to start text of current line smile


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#480 2009-08-16 22:54:17

MreDD
Member
From: Orange County, USA
Registered: 2007-08-26
Posts: 175
Website

Re: uzbl. A browser that adheres to the unix philosophy.

i prob. missed it but i searched for help on passwords.
how to handle paswords for forums or any sites that require passwords?


...MikereDD
:Go Away & Give My Pillow Back!!:
aur pkgbuilds - mostly fortune-mod's & fonts

Offline

#481 2009-08-16 23:33:14

N30N
Member
Registered: 2007-04-08
Posts: 273

Re: uzbl. A browser that adheres to the unix philosophy.

MreDD wrote:

i prob. missed it but i searched for help on passwords.
how to handle paswords for forums or any sites that require passwords?

There's a formfiller script in the examples directory.

Earlier today I wrote a script to integrate pwsafe, currently alpha. I'll finish it off when I have time (in the next a day or two) and will stick it on the wiki.
Usage: Save and bind.

bind :pw_ = script $XDG_DATA_HOME/uzbl/scripts/pwsafe.js

Offline

#482 2009-08-16 23:55:19

MreDD
Member
From: Orange County, USA
Registered: 2007-08-26
Posts: 175
Website

Re: uzbl. A browser that adheres to the unix philosophy.

N30N wrote:
MreDD wrote:

i prob. missed it but i searched for help on passwords.
how to handle paswords for forums or any sites that require passwords?

There's a formfiller script in the examples directory.

Earlier today I wrote a script to integrate pwsafe, currently alpha. I'll finish it off when I have time (in the next a day or two) and will stick it on the wiki.
Usage: Save and bind.

bind :pw_ = script $XDG_DATA_HOME/uzbl/scripts/pwsafe.js

nice thank you.. Im injoying this browser, been using conkeror.
boucing back and forth as you guys make changes.
smile passwords was only thing i was missing.


...MikereDD
:Go Away & Give My Pillow Back!!:
aur pkgbuilds - mostly fortune-mod's & fonts

Offline

#483 2009-08-19 20:30:04

Dieter@be
Forum Fellow
From: Belgium
Registered: 2006-11-05
Posts: 2,001
Website

Re: uzbl. A browser that adheres to the unix philosophy.

jelly wrote:

Next in line i made a session restore option that works with multiple uzbl windows open and just writes the url's in a txt file , and reads them if you start the script. AFter reading the README this script could get some adjustemts /modification.

did you check examples/data/uzbl/scripts/session.sh ? sounds like just what you need.

jelly wrote:

And then i might want to work on the further implementation of the history.sh script. I was thinking of making a viewer in gtk/zenity/uzbl window or try to make the vimperator bar wich pops op if you hit tab after some keywords ( the last idea might be a bit too hard for me )

can you explain what happens (or give an example) in vimperator when you hit tab after some keywords?
I'm personally fine with dmenu-vertical with xmms-style matching (which we use in the sample scripts, if dmenu-vertical is found), but I'm always eager to learn wink


< Daenyth> and he works prolifically
4 8 15 16 23 42

Offline

#484 2009-08-19 20:34:46

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: uzbl. A browser that adheres to the unix philosophy.

Dieter@be wrote:
jelly wrote:

Next in line i made a session restore option that works with multiple uzbl windows open and just writes the url's in a txt file , and reads them if you start the script. AFter reading the README this script could get some adjustemts /modification.

did you check examples/data/uzbl/scripts/session.sh ? sounds like just what you need.

jelly wrote:

And then i might want to work on the further implementation of the history.sh script. I was thinking of making a viewer in gtk/zenity/uzbl window or try to make the vimperator bar wich pops op if you hit tab after some keywords ( the last idea might be a bit too hard for me )

can you explain what happens (or give an example) in vimperator when you hit tab after some keywords?
I'm personally fine with dmenu-vertical with xmms-style matching (which we use in the sample scripts, if dmenu-vertical is found), but I'm always eager to learn wink

Hello
By dmenu-vertical you mean this tabbed extesion (wiki screenshot by ruskie) where I can find it? smile
Thanks for help smile


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#485 2009-08-19 20:37:18

Dieter@be
Forum Fellow
From: Belgium
Registered: 2006-11-05
Posts: 2,001
Website

Re: uzbl. A browser that adheres to the unix philosophy.

SpeedVin wrote:

Hello
By dmenu-vertical you mean this tabbed extesion (wiki screenshot by ruskie) where I can find it? smile
Thanks for help smile

No, I mean fresch's totally awesome dmenu patch.  See http://bbs.archlinux.org/viewtopic.php?id=54086

There is a package in AUR but afaik it's broken right now: http://aur.archlinux.org/packages.php?ID=20063


< Daenyth> and he works prolifically
4 8 15 16 23 42

Offline

#486 2009-08-19 20:42:04

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: uzbl. A browser that adheres to the unix philosophy.

Dieter@be wrote:
SpeedVin wrote:

Hello
By dmenu-vertical you mean this tabbed extesion (wiki screenshot by ruskie) where I can find it? smile
Thanks for help smile

No, I mean fresch's totally awesome dmenu patch.  See http://bbs.archlinux.org/viewtopic.php?id=54086

There is a package in AUR but afaik it's broken right now: http://aur.archlinux.org/packages.php?ID=20063

That's good maybe I will do dmenu script like ruskie , it will be hard smile
Don't you know where I can find this tabbed script for dmenu from ruskie?


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#487 2009-08-19 20:44:41

Vintendo
Member
From: Netherlands
Registered: 2008-04-21
Posts: 375
Website

Re: uzbl. A browser that adheres to the unix philosophy.

Offline

#488 2009-08-20 03:11:47

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: uzbl. A browser that adheres to the unix philosophy.

Whee! Just switched over from Firefox. Epic.

Offline

#489 2009-08-20 10:21:42

Heller_Barde
Member
Registered: 2008-04-01
Posts: 245

Re: uzbl. A browser that adheres to the unix philosophy.

do I understand correctly that if using openbox, I can either use tabbed_uzbl.py or switch to pekwm/fluxbox or similar because openbox does not support window tabbing?

cheers
Barde

Offline

#490 2009-08-20 11:00:41

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: uzbl. A browser that adheres to the unix philosophy.

Heller_Barde wrote:

do I understand correctly that if using openbox, I can either use tabbed_uzbl.py or switch to pekwm/fluxbox or similar because openbox does not support window tabbing?

cheers
Barde

I'm in the same situation , for now I search for Tiling WM with window tabbing feature wink
Hey Xmonad have tabbing layout , I will try it , someone use it with UZBL?

Last edited by SpeedVin (2009-08-20 11:06:47)


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#491 2009-08-20 11:13:39

Vintendo
Member
From: Netherlands
Registered: 2008-04-21
Posts: 375
Website

Re: uzbl. A browser that adheres to the unix philosophy.

I use it with Uzbl and it works perfectly.

Offline

#492 2009-08-20 18:27:05

np
Member
Registered: 2009-08-17
Posts: 4

Re: uzbl. A browser that adheres to the unix philosophy.

Strom wrote:

Thank you N30N, you made my day! wink

For those interested, below is a quick template that bother changing the text and background color of a whole webpage. It also specifies the color of the first four levels of title and of the hyperlinks.

* {
    color:          #777777 !important;
    background:        #111111 !important;
}
h1 {
    color:          #BB0000 !important;
}
h2 {
    color:          orange !important;
}
h3 {
    color:          #00BB00 !important;
}
h4 {
    color:          #BBBB00 !important;
}
a:link {
    text-decoration:    none;
    font-weight:    bold;
    color:    #008888 !important;
    background:    none !important;
}
a:visited {
    text-decoration:    none;
    font-weight:    bold;
    color:    #880088 !important;
    background:    none !important;
}

Now my eyes can relax... cool

That's awesome, the only problem for me is that there are large white rectangles below peoples names on this forum, any idea how to get rid of that?

Offline

#493 2009-08-20 18:32:33

Dieter@be
Forum Fellow
From: Belgium
Registered: 2006-11-05
Posts: 2,001
Website

Re: uzbl. A browser that adheres to the unix philosophy.

SpeedVin wrote:
Dieter@be wrote:
SpeedVin wrote:

Hello
By dmenu-vertical you mean this tabbed extesion (wiki screenshot by ruskie) where I can find it? smile
Thanks for help smile

No, I mean fresch's totally awesome dmenu patch.  See http://bbs.archlinux.org/viewtopic.php?id=54086

There is a package in AUR but afaik it's broken right now: http://aur.archlinux.org/packages.php?ID=20063

That's good maybe I will do dmenu script like ruskie , it will be hard smile
Don't you know where I can find this tabbed script for dmenu from ruskie?

You mean what you see on ruskie's screenshots @ http://www.uzbl.org/wiki/shots ? that's just using uzbl_tabbed.py (look at example scripts folder).  It has a setting to do tabs vertically at the sides instead of horizontally.

SpeedVin wrote:

Hey Xmonad have tabbing layout , I will try it , someone use it with UZBL?

Duclare does it, and it looks f*** nice.  Makes me jealous, because it's better then wmii's stacked mode.  i can't find the screenshot right now.


< Daenyth> and he works prolifically
4 8 15 16 23 42

Offline

#494 2009-08-20 19:18:26

Dieter@be
Forum Fellow
From: Belgium
Registered: 2006-11-05
Posts: 2,001
Website

Re: uzbl. A browser that adheres to the unix philosophy.

Here's duclare's screenie showing xmonad tabbing with uzbl: http://guu.fi/shots/0006.png


< Daenyth> and he works prolifically
4 8 15 16 23 42

Offline

#495 2009-08-20 19:52:49

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: uzbl. A browser that adheres to the unix philosophy.

Dieter@be wrote:
SpeedVin wrote:
Dieter@be wrote:

No, I mean fresch's totally awesome dmenu patch.  See http://bbs.archlinux.org/viewtopic.php?id=54086

There is a package in AUR but afaik it's broken right now: http://aur.archlinux.org/packages.php?ID=20063

That's good maybe I will do dmenu script like ruskie , it will be hard smile
Don't you know where I can find this tabbed script for dmenu from ruskie?

You mean what you see on ruskie's screenshots @ http://www.uzbl.org/wiki/shots ? that's just using uzbl_tabbed.py (look at example scripts folder).  It has a setting to do tabs vertically at the sides instead of horizontally.

SpeedVin wrote:

Hey Xmonad have tabbing layout , I will try it , someone use it with UZBL?

Duclare does it, and it looks f*** nice.  Makes me jealous, because it's better then wmii's stacked mode.  i can't find the screenshot right now.

Yeah I mean uzbl_tabbed.py script I was thinking that was Dmenu smile
Anyway I now use Xmonad and someone can post some instruction how to do like that on screenshot that Dieter@be posted?
Thank your Dieter@be smile


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#496 2009-08-20 22:08:27

scj
Member
From: Sweden
Registered: 2007-09-23
Posts: 158

Re: uzbl. A browser that adheres to the unix philosophy.

SpeedVin wrote:

Yeah I mean uzbl_tabbed.py script I was thinking that was Dmenu smile
Anyway I now use Xmonad and someone can post some instruction how to do like that on screenshot that Dieter@be posted?
Thank your Dieter@be smile

Have you looked at the xmonad-contrib documentation forXMonad.Layout.Tabbed?

Offline

#497 2009-08-21 05:57:18

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: uzbl. A browser that adheres to the unix philosophy.

scj wrote:
SpeedVin wrote:

Yeah I mean uzbl_tabbed.py script I was thinking that was Dmenu smile
Anyway I now use Xmonad and someone can post some instruction how to do like that on screenshot that Dieter@be posted?
Thank your Dieter@be smile

Have you looked at the xmonad-contrib documentation forXMonad.Layout.Tabbed?

Yes I read it , but I have question about it.
In my config I got:

-- Main
 38 main = do
 39   d <- spawnPipe myStatusBar
 40   spawn myOtherBar
 41   xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig
 42     { terminal           = myTerminal
 43     , workspaces         = myWorkspaces
 44     , borderWidth        = myBorderWidth
 45     , normalBorderColor  = myNormalBorderColor
 46     , focusedBorderColor = myFocusedBorderColor
 47     , layoutHook         = myLayout
 48     , manageHook         = myManageHook
 49     , keys               = myKeys
 50     }

And on the page I have to change do to xmonad defaultConfig { layoutHook = simpleTabbed and If I do that my config will don't work sad
How to get this 2 config part's to work?

Last edited by SpeedVin (2009-08-21 05:57:50)


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#498 2009-08-21 08:59:41

Vintendo
Member
From: Netherlands
Registered: 2008-04-21
Posts: 375
Website

Re: uzbl. A browser that adheres to the unix philosophy.

You have to edit myLayout. layoutHook points to myLayout which probably has a list of layouts.

Offline

#499 2009-08-21 09:24:08

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: uzbl. A browser that adheres to the unix philosophy.

Vintendo wrote:

You have to edit myLayout. layoutHook points to myLayout which probably has a list of layouts.

I just edited it and added Tabbed but I got following error's when I try to compile:

Error detected while loading xmonad configuration file: /home/user/.home/.xmonad/xmonad.hs

on the commandline:
    Warning: -no-recomp is deprecated: Use -fforce-recomp instead

xmonad.hs:96:93:
    Ambiguous occurrence `Tall'
    It could refer to either `XMonad.Tall', imported from XMonad at xmonad.hs:11:0-12
                          or `XMonad.Layout.HintedTile.Tall', imported from XMonad.Layout.HintedTile at xmonad.hs:21:0-30

xmonad.hs:96:154: Not in scope: data constructor `Tabbed'

Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#500 2009-08-21 09:32:42

Vintendo
Member
From: Netherlands
Registered: 2008-04-21
Posts: 375
Website

Re: uzbl. A browser that adheres to the unix philosophy.

Where is your xmonad.hs?

BTW #xmonad at irc.freenode.net is a great help

Last edited by Vintendo (2009-08-21 09:33:30)

Offline

Board footer

Powered by FluxBB