diff --git a/extensions/organize-desktop-by-date/extension.yaml b/extensions/organize-desktop-by-date/extension.yaml new file mode 100644 index 0000000..b2f47aa --- /dev/null +++ b/extensions/organize-desktop-by-date/extension.yaml @@ -0,0 +1,9 @@ +# cai-extension +name: Organize Desktop by Date +description: Move Desktop files into a dated folder +author: kisyaki +version: "1.0" +tags: [productivity, organization] +icon: folder.badge.gearshape +type: shell +command: "mkdir -p ~/Desktop/$(date +%Y-%m-%d) && mv ~/Desktop/*.* ~/Desktop/$(date +%Y-%m-%d)/" diff --git a/extensions/search-discogs/extension.yaml b/extensions/search-discogs/extension.yaml new file mode 100644 index 0000000..090cd49 --- /dev/null +++ b/extensions/search-discogs/extension.yaml @@ -0,0 +1,9 @@ +# cai-extension +name: Search Discogs +description: Search Discogs for an album or artist +author: kisyaki +version: "1.0" +tags: [search, music] +icon: opticaldisc.fill +type: url +url: "https://www.discogs.com/search/?q=%s" diff --git a/extensions/search-spotify/extension.yaml b/extensions/search-spotify/extension.yaml new file mode 100644 index 0000000..6786686 --- /dev/null +++ b/extensions/search-spotify/extension.yaml @@ -0,0 +1,9 @@ +# cai-extension +name: Search Spotify +description: Search Spotify for a song or artist +author: kisyaki +version: "1.0" +tags: [search, music] +icon: music.note +type: url +url: "https://open.spotify.com/search/%s" diff --git a/extensions/search-urban-dictionary/extension.yaml b/extensions/search-urban-dictionary/extension.yaml new file mode 100644 index 0000000..f7c2027 --- /dev/null +++ b/extensions/search-urban-dictionary/extension.yaml @@ -0,0 +1,9 @@ +# cai-extension +name: Search Urban Dictionary +description: Look up slang on Urban Dictionary +author: kisyaki +version: "1.0" +tags: [search, reference] +icon: character.book.closed.fill +type: url +url: "https://www.urbandictionary.com/define.php?term=%s" \ No newline at end of file