mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
14 lines
283 B
Python
14 lines
283 B
Python
import prof
|
|
import getpass
|
|
|
|
# hooks
|
|
|
|
def prof_init(version, status):
|
|
prof.register_command("/whoami", 0, 0, "/whoami", "Call shell whoami command.", "Call shell whoami command.", cmd_whoami)
|
|
|
|
# local functions
|
|
|
|
def cmd_whoami():
|
|
me = getpass.getuser()
|
|
prof.cons_show(me)
|