This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/config/rc.lua b/config/rc.lua | |
index c03a6bd..aa3a781 100644 | |
--- a/config/rc.lua | |
+++ b/config/rc.lua | |
@@ -109,6 +109,20 @@ require "downloads_chrome" | |
-- Add vimperator-like link hinting & following | |
require "follow" | |
+follow.stylesheet = follow.stylesheet .. [===[ | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# License: Public Domain. | |
# Author: Joseph Wecker, 2012 | |
# | |
# Are you tired of trying to remember what .bashrc does vs .bash_profile vs .profile? | |
# Are you tired of trying to remember how darwin/mac-osx treat them differently from linux? | |
# Are you tired of not having your ~/.bash* stuff work the way you expect? | |
# | |
# Symlink all of the following to this file: | |
# * ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function webview.init_funcs.set_jquery_speed(view, w) | |
view:add_signal("load-status", function (view, status) | |
if status == "finished" and string.match(view.uri, "^luakit://") then | |
view:eval_js [=[ if ($) $.fx.speeds._default = 70; ]=] | |
end | |
end) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# WARNING: This creates and manipulates clear text copies of the | |
# encrypted files. It tries to clean up afterwards, but lots can go | |
# wrong. If you are seriously worried about the secrecy of the files, | |
# don't trust this! | |
ANCESTOR=$1 | |
MINE=$2 | |
OTHER=$3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/config/rc.lua b/config/rc.lua | |
index 839310e..88b43be 100644 | |
--- a/config/rc.lua | |
+++ b/config/rc.lua | |
@@ -130,6 +130,30 @@ require "go_input" | |
require "go_next_prev" | |
require "go_up" | |
+------------------ | |
+-- Add a clock! -- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------------------- | |
-- NoScript plugin for luakit -- | |
-- (C) 2011 Mason Larobina <[email protected]> -- | |
-------------------------------------------------------- | |
-- Get Lua environment | |
local os = require "os" | |
local tonumber = tonumber | |
local assert = assert | |
local table = table |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: J. W. Birdsong <jwbirdsong AT gmail DOT com> | |
pkgname=luakit | |
pkgver=2011.05.06 | |
pkgrel=1 | |
pkgdesc="luakit is a fast, small, webkit-gtk based browser extensible by Lua. Stable release." | |
arch=('i686' 'x86_64') | |
url="http://www.luakit.org/projects/luakit" | |
license=('GPL3') | |
depends=('libwebkit' 'luafilesystem') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---------------------------------------------------------- | |
-- :dbclean command to vacuum all open sqlite databases -- | |
-- (C) 2011 Mason Larobina <[email protected]> -- | |
---------------------------------------------------------- | |
-- Note: this needs to be required in your config before any databases | |
-- are created (i.e. before the history and cookies libs) | |
require "coroutine" | |
require "lfs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------------ | |
-- Auto enter insert mode when input field focused on page load -- | |
-- (C) 2011 Mason Larobina <[email protected]> -- | |
------------------------------------------------------------------ | |
local is_editable = [=[ | |
(function () { | |
var e = document.activeElement; | |
// we might get a window object if the main frame was focused | |
if (!e || !e.tagName) { |