Skip to content

Instantly share code, notes, and snippets.

@alterecco
alterecco / gist:483523
Created July 20, 2010 20:29
dsf syntax example
(setq my-initial-screen (lambda nil
(block nil
;; use the standard screen, and set a name for the screen
(dsf/screen 'Standard "Initial Screen")
;; add a description to the screen
(dsf/description "This is a pane description")
;; define the attributes of an action on the screen
(dsf/action 0 "Default Action" 'D '(dbgLog "Called Default Action"))
(dsf/action 1 "Exit" 'E '(scrExitDock gScreen))
(dsf/show-screen)
@alterecco
alterecco / pkget
Created March 6, 2010 18:12
pkget
#!/bin/bash
##
##
## Search and download packages from ABS and AUR
## Inspired by pbget, aurget and yaourt
## Does really not try to be more than what it say
## on the box, we have plenty of tools for that
##
##