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