Created
May 8, 2014 16:40
-
-
Save nmcv/278b8aeda7676bf59ae1 to your computer and use it in GitHub Desktop.
Exit script for i3 (replaces i3-exit) with GTK frontend. Forked off someone on GH, added CLI options
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
#!/usr/bin/env python | |
# based on cb-exit used in CrunchBang Linux <http://crunchbanglinux.org/> | |
import pygtk | |
pygtk.require('2.0') | |
import gtk | |
import os | |
import getpass | |
import sys | |
class i3_exit: | |
def disable_buttons(self): | |
self.cancel.set_sensitive(False) | |
self.logout.set_sensitive(False) | |
self.suspend.set_sensitive(False) | |
self.reboot.set_sensitive(False) | |
self.shutdown.set_sensitive(False) | |
def cancel_action(self,btn): | |
self.disable_buttons() | |
gtk.main_quit() | |
def logout_action(self,btn): | |
self.disable_buttons() | |
self.status.set_label("Exiting i3, please standby...") | |
os.system("i3-msg exit") | |
def suspend_action(self,btn): | |
self.disable_buttons() | |
self.status.set_label("Suspending, please standby...") | |
os.system("i3-lock") | |
os.system("dbus-send --system --print-reply \ | |
--dest=\"org.freedesktop.UPower\" \ | |
/org/freedesktop/UPower \ | |
org.freedesktop.UPower.Suspend") | |
gtk.main_quit() | |
def reboot_action(self,btn): | |
self.disable_buttons() | |
self.status.set_label("Rebooting, please standby...") | |
os.system("dbus-send --system --print-reply \ | |
--dest=\"org.freedesktop.ConsoleKit\" \ | |
/org/freedesktop/ConsoleKit/Manager \ | |
org.freedesktop.ConsoleKit.Manager.Restart") | |
def shutdown_action(self,btn): | |
self.disable_buttons() | |
self.status.set_label("Shutting down, please standby...") | |
os.system("dbus-send --system --print-reply \ | |
--dest=\"org.freedesktop.ConsoleKit\" \ | |
/org/freedesktop/ConsoleKit/Manager \ | |
org.freedesktop.ConsoleKit.Manager.Stop") | |
def create_window(self): | |
self.window = gtk.Window() | |
title = "Log out " + getpass.getuser() + "? Choose an option:" | |
self.window.set_title(title) | |
self.window.set_border_width(5) | |
self.window.set_size_request(500, 50) | |
self.window.set_resizable(False) | |
self.window.set_keep_above(True) | |
self.window.stick | |
self.window.set_position(1) | |
self.window.connect("delete_event", gtk.main_quit) | |
windowicon = self.window.render_icon(gtk.STOCK_QUIT, gtk.ICON_SIZE_MENU) | |
self.window.set_icon(windowicon) | |
#Create HBox for buttons | |
self.button_box = gtk.HBox() | |
self.button_box.show() | |
#Cancel button | |
self.cancel = gtk.Button(stock = gtk.STOCK_CANCEL) | |
self.cancel.set_border_width(4) | |
self.cancel.connect("clicked", self.cancel_action) | |
self.button_box.pack_start(self.cancel) | |
self.cancel.show() | |
#Logout button | |
self.logout = gtk.Button("_Log out") | |
self.logout.set_border_width(4) | |
self.logout.connect("clicked", self.logout_action) | |
self.button_box.pack_start(self.logout) | |
self.logout.show() | |
#Suspend button | |
self.suspend = gtk.Button("_Suspend") | |
self.suspend.set_border_width(4) | |
self.suspend.connect("clicked", self.suspend_action) | |
self.button_box.pack_start(self.suspend) | |
self.suspend.show() | |
#Reboot button | |
self.reboot = gtk.Button("_Reboot") | |
self.reboot.set_border_width(4) | |
self.reboot.connect("clicked", self.reboot_action) | |
self.button_box.pack_start(self.reboot) | |
self.reboot.show() | |
#Shutdown button | |
self.shutdown = gtk.Button("_Power off") | |
self.shutdown.set_border_width(4) | |
self.shutdown.connect("clicked", self.shutdown_action) | |
self.button_box.pack_start(self.shutdown) | |
self.shutdown.show() | |
#Create HBox for status label | |
self.label_box = gtk.HBox() | |
self.label_box.show() | |
self.status = gtk.Label() | |
self.status.show() | |
self.label_box.pack_start(self.status) | |
#Create VBox and pack the above HBox's | |
self.vbox = gtk.VBox() | |
self.vbox.pack_start(self.button_box) | |
self.vbox.pack_start(self.label_box) | |
self.vbox.show() | |
self.window.add(self.vbox) | |
self.window.show() | |
def __init__(self): | |
self.create_window() | |
class app: | |
def lock(self): | |
print("Locking ...") | |
os.system("i3-msg exit") | |
def logout(self): | |
print("Loggin out ...") | |
os.system("i3-lock") | |
os.system("dbus-send --system --print-reply \ | |
--dest=\"org.freedesktop.UPower\" \ | |
/org/freedesktop/UPower \ | |
org.freedesktop.UPower.Suspend") | |
def shutdown(self): | |
print("Shutting dowm ...") | |
os.system("dbus-send --system --print-reply \ | |
--dest=\"org.freedesktop.ConsoleKit\" \ | |
/org/freedesktop/ConsoleKit/Manager \ | |
org.freedesktop.ConsoleKit.Manager.Stop") | |
def reboot(self): | |
print("Rebooting ...") | |
os.system("dbus-send --system --print-reply \ | |
--dest=\"org.freedesktop.ConsoleKit\" \ | |
/org/freedesktop/ConsoleKit/Manager \ | |
org.freedesktop.ConsoleKit.Manager.Restart") | |
def suspend(self): | |
print("Suspending ...") | |
os.system("i3-lock") | |
os.system("dbus-send --system --print-reply \ | |
--dest=\"org.freedesktop.UPower\" \ | |
/org/freedesktop/UPower \ | |
org.freedesktop.UPower.Suspend") | |
def __init__(self): | |
pass | |
def main(): | |
gtk.main() | |
if __name__ == "__main__": | |
opts = \ | |
{ | |
"--lock": app().lock, | |
"--logout": app().logout, | |
"--shutdown": app().shutdown, | |
"--reboot": app().reboot, | |
"--suspend": app().suspend | |
} | |
if len(sys.argv) > 1: | |
opts[sys.argv[1]]() | |
else: | |
go = i3_exit() | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment