From 7d757db73d862b368c57aed2da769a53b3e1e920 Mon Sep 17 00:00:00 2001 From: necoro <> Date: Thu, 5 Jul 2007 02:40:39 +0000 Subject: added ability to disable/enable plugins in qt too; added shutdown plugin --- portato/plugins/shutdown.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 portato/plugins/shutdown.py (limited to 'portato/plugins') diff --git a/portato/plugins/shutdown.py b/portato/plugins/shutdown.py new file mode 100644 index 0000000..a29ee6f --- /dev/null +++ b/portato/plugins/shutdown.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# +# File: portato/plugins/shutdown.py +# This file is part of the Portato-Project, a graphical portage-frontend. +# +# Copyright (C) 2007 René 'Necoro' Neumann +# This is free software. You may redistribute copies of it under the terms of +# the GNU General Public License version 2. +# There is NO WARRANTY, to the extent permitted by law. +# +# Written by René 'Necoro' Neumann + +import os + +def shutdown (*args): + """Shutdown the computer. May not work if not root.""" + os.system("shutdown -h now") -- cgit v1.2.3