#!/usr/bin/env bash

# kalle
# Copyright (C) 2024-2025 Wayland Holdings, LLC

CONVERSATION_ROOT="$HOME/.local/share/kalle/conversations"
if [[ "$(uname)" == "Darwin" ]]; then
  CONVERSATION_ROOT="$HOME/Library/Application Support/kalle/conversations"
fi

ls -1 "$CONVERSATION_ROOT" | grep ^conversation_ | sed "s/^conversation_//" | sed "s/\..*$//" | sort | uniq
