You are not logged in.
@Sakurina thanks for the info. However no luck, even a simple css as below does not work
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
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
Thank you N30N, you made my day!
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...
Offline
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
Shell Scripter | C/C++/Python/Java Coder | ZSH
Offline
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
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
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.
passwords was only thing i was missing.
...MikereDD
:Go Away & Give My Pillow Back!!:
aur pkgbuilds - mostly fortune-mod's & fonts
Offline
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.
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
< Daenyth> and he works prolifically
4 8 15 16 23 42
Offline
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
Hello
By dmenu-vertical you mean this tabbed extesion (wiki screenshot by ruskie) where I can find it?
Thanks for help
Shell Scripter | C/C++/Python/Java Coder | ZSH
Offline
Hello
By dmenu-vertical you mean this tabbed extesion (wiki screenshot by ruskie) where I can find it?
Thanks for help
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
SpeedVin wrote:Hello
By dmenu-vertical you mean this tabbed extesion (wiki screenshot by ruskie) where I can find it?
Thanks for helpNo, 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
Don't you know where I can find this tabbed script for dmenu from ruskie?
Shell Scripter | C/C++/Python/Java Coder | ZSH
Offline
Just made such thing http://www.uzbl.org/wiki/bookmark-history-search
Offline
Whee! Just switched over from Firefox. Epic.
Offline
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
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
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
I use it with Uzbl and it works perfectly.
Offline
Thank you N30N, you made my day!
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...
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
Dieter@be wrote:SpeedVin wrote:Hello
By dmenu-vertical you mean this tabbed extesion (wiki screenshot by ruskie) where I can find it?
Thanks for helpNo, 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
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.
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
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
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
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
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
Shell Scripter | C/C++/Python/Java Coder | ZSH
Offline
Yeah I mean uzbl_tabbed.py script I was thinking that was Dmenu
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
Have you looked at the xmonad-contrib documentation forXMonad.Layout.Tabbed?
Offline
SpeedVin wrote:Yeah I mean uzbl_tabbed.py script I was thinking that was Dmenu
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@beHave 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
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
You have to edit myLayout. layoutHook points to myLayout which probably has a list of layouts.
Offline
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
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