2023-01-17 01:46:39 +11:00
|
|
|
#Lurkan
|
|
|
|
notifs(){ getauth "user/replies" ".replies | reverse | $notifs"; }
|
2023-07-29 19:12:35 +10:00
|
|
|
notifs2(){ echo "use mentions instead"; }
|
|
|
|
mentions(){ getauth "user/mention" ".mentions | reverse | $notifs"; }
|
2023-01-17 01:46:39 +11:00
|
|
|
home(){ getauth "post/list" ".posts | $posts" "type_=Subscribed"; }
|
2023-06-02 10:38:41 +10:00
|
|
|
#This has to get complex now -.-
|
2023-06-02 11:16:28 +10:00
|
|
|
comments(){ getauth "post" "(.post_view | $showpost)" "id=$1"; getauth "comment/list" "(.comments | reverse | $comments_view)" "post_id=$1&sort=New"; }
|