diff options
author | necoro <> | 2007-07-05 02:40:39 +0000 |
---|---|---|
committer | necoro <> | 2007-07-05 02:40:39 +0000 |
commit | 7d757db73d862b368c57aed2da769a53b3e1e920 (patch) | |
tree | f1c6a464aaa8a6ee340e141652b152ff667b2813 /portato/plugins/shutdown.py | |
parent | 1a3073d1e195118c636df983fcd647d7d028cd82 (diff) | |
download | portato-7d757db73d862b368c57aed2da769a53b3e1e920.tar.gz portato-7d757db73d862b368c57aed2da769a53b3e1e920.tar.bz2 portato-7d757db73d862b368c57aed2da769a53b3e1e920.zip |
added ability to disable/enable plugins in qt too; added shutdown plugin
Diffstat (limited to 'portato/plugins/shutdown.py')
-rw-r--r-- | portato/plugins/shutdown.py | 17 |
1 files changed, 17 insertions, 0 deletions
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 <necoro@necoro.net> + +import os + +def shutdown (*args): + """Shutdown the computer. May not work if not root.""" + os.system("shutdown -h now") |