summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorben <ben@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-05-31 12:57:02 +0000
committerben <ben@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-05-31 12:57:02 +0000
commit7bef5075e7c39cf318847f8ba9282c25c3ceded2 (patch)
treecbb87fe227e7e26be26b3d379e72b4de5e1e7a9d /linux
parentaa6ff7da9c0cb331638ffc131a50ead8e89be2b7 (diff)
downloadneo-layout-7bef5075e7c39cf318847f8ba9282c25c3ceded2.tar.gz
neo-layout-7bef5075e7c39cf318847f8ba9282c25c3ceded2.tar.bz2
neo-layout-7bef5075e7c39cf318847f8ba9282c25c3ceded2.zip
Tool um kommandos über trayicon auszuführen hinzugefügt
git-svn-id: https://svn.neo-layout.org@1883 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'linux')
-rw-r--r--linux/traycommand/layoutswitch.yaml7
-rwxr-xr-xlinux/traycommand/traycommand141
2 files changed, 148 insertions, 0 deletions
diff --git a/linux/traycommand/layoutswitch.yaml b/linux/traycommand/layoutswitch.yaml
new file mode 100644
index 0000000..5b8d369
--- /dev/null
+++ b/linux/traycommand/layoutswitch.yaml
@@ -0,0 +1,7 @@
+---
+- command: "~/bin/asdf; xmodmap ~/thinkpad.xmodmap"
+ icon: "~/neo/windows/neo-vars/src/neo_enabled.ico"
+ menutext: "Neo"
+- command: "~/bin/uiae; xmodmap ~/thinkpad.xmodmap"
+ icon: "~/neo/windows/neo-vars/src/neo_disabled.ico"
+ menutext: "qwertz"
diff --git a/linux/traycommand/traycommand b/linux/traycommand/traycommand
new file mode 100755
index 0000000..6a4e9fe
--- /dev/null
+++ b/linux/traycommand/traycommand
@@ -0,0 +1,141 @@
+#!/usr/bin/env ruby
+
+begin
+ require 'gtk2'
+rescue LoadError
+ $stderr << "########################################################\n"
+ $stderr << "# In order to run this programm you need ruby-gnome2! #\n"
+ $stderr << "########################################################\n"
+ raise
+end
+
+require 'yaml'
+require 'pp'
+require 'optparse'
+require 'ostruct'
+require 'gconf2'
+
+TRAYCOMMANDVERSION = [0,1]
+
+Gtk.init
+$options = OpenStruct.new
+
+optpars = OptionParser.new { |opts|
+
+ opts.banner = "Usage: #{File.basename($0)} [options]"
+
+ opts.separator "Options:"
+
+ opts.on("--configfile=file", "Path to the configfile.") {|string|
+ $options.configfile = string
+ }
+
+ opts.on_tail("--version", "Show version and exit") {
+ puts "traycommand #{TRAYCOMMANDVERSION.join('.')}"
+ puts "written by Benjamin Kellermann <Benjamin.Kellermann@gmx.de>"
+ exit
+ }
+}
+
+begin
+ optpars.parse!
+rescue => e
+ puts e
+ puts optpars
+ exit
+end
+
+############################################################################
+# init the things from the configfile
+############################################################################
+unless File.exist?($options.configfile) and $config = YAML::load_file($options.configfile)
+ $config = []
+ 2.times{
+ $config << {"command" => "/path/to/command.sh",
+ "icon" => "/path/to/icon.{png|ico|jpg|...}",
+ "menutext" => "Some Useful text"}
+ }
+ File.open($options.configfile, 'w') do |out|
+ out << $config.to_yaml
+ end
+ puts "Created configfile template, exiting now"
+ exit
+end
+
+############################################################################
+# init the tray and GTK stuff
+############################################################################
+currentconfig = 0
+$sicon = Gtk::StatusIcon.new
+$sicon.pixbuf = Gdk::Pixbuf.new(File.expand_path($config[currentconfig]["icon"]))
+
+# Add a menu
+menu = Gtk::Menu.new
+
+$config.each_with_index{|citem,i|
+ item = Gtk::MenuItem.new(citem["menutext"])
+ item.signal_connect("activate"){
+ `#{citem["command"]}`
+ $sicon.pixbuf = Gdk::Pixbuf.new(File.expand_path(citem["icon"]))
+ currentconfig = i
+ }
+ menu.append(item.show)
+}
+$sicon.signal_connect("activate"){
+ nextconf = (currentconfig+1) % $config.size
+ `#{$config[nextconf]["command"]}`
+ $sicon.pixbuf = Gdk::Pixbuf.new(File.expand_path($config[nextconf]["icon"]))
+ currentconfig = nextconf
+}
+
+
+
+
+############################################################################
+# set the about dialog
+############################################################################
+aboutitem = Gtk::ImageMenuItem.new(Gtk::Stock::ABOUT)
+aboutitem.signal_connect("activate") {
+ Gtk::AboutDialog.set_email_hook {|about, link|
+ `xdg-open mailto:#{link}`
+ }
+ Gtk::AboutDialog.set_url_hook {|about, link|
+ `xdg-open #{link}`
+ }
+
+ a = Gtk::AboutDialog.new
+ a.authors = ["Benjamin Kellermann <Benjamin.Kellermann@gmx.de>"]
+ a.comments = "This is an applet to execute commands fastly."
+ a.copyright = "Copyright (C) 2009 Benjamin Kellermann"
+ a.license = "This program is licenced under CC-by-sa"
+ a.logo_icon_name = "gtk-about"
+ a.name = "keyspeedapplet"
+ a.version = TRAYCOMMANDVERSION.join(".")
+ a.website = "http://www.eigenheimstrasse.de/~ben/traycommand/"
+ a.website_label = "Download Website"
+ a.signal_connect('response') { a.destroy }
+ a.show
+}
+menu.append(aboutitem.show)
+
+# add an exit button
+quit = Gtk::ImageMenuItem.new(Gtk::Stock::QUIT)
+quit.signal_connect("activate") { Gtk.main_quit }
+menu.append(Gtk::SeparatorMenuItem.new.show)
+menu.append(quit.show)
+
+$sicon.signal_connect('popup-menu') do |w,e,time|
+ menu.popup(nil, nil, e, time)
+end
+
+pid = fork {
+ Signal.trap("USR1") {
+ $sicon.activate
+ }
+ Gtk.main
+}
+File.open("/tmp/traycommand-#{$options.configfile}.pid","w"){|f|
+ f << pid
+}
+
+Process.waitpid(pid)