# encoding: ascii
# api: powershell
# title: PowerGrowl Sample
# description: PowerGrowl Sample Goes Here
# version: 0.1
# type: module
# author: Thom Lamb
# license: CC0
# x-poshcode-id: 6474
# x-archived: 2017-03-31T03:21:48
# x-published: 2017-08-13T03:29:00
#
#
# Working PowerGrowl Sample Goes Here
Clear-Host
$Location = $($Env:PSModulePath).Split(';')[0]
Import-Module $Location\PowerGrowl.psm1
Get-Module PowerGrowl | Format-List
#These lines are extracted from the PowerGrowl Module, however they are non-functional
#I'm hoping the module author will update this and contribute a working sample
Register-GrowlType -AppName "PoshTwitter" -Name "Greetings" `
-Icon "C:\Users\username\Documents\WindowsPowerShell\Modules\default_icon.png"
Send-Growl "Greetings" "Hello World!"