I have been using KDE via Kubuntu for about 2 years now, other distros with Gnome before that. Based upon the name (KDE Advanced Text Editor, K.A.T.E.) I always thought of Kate as an alternative to Notepad++ or something like that. Like a highend note-taking app.

I recently started using Kate for managing my Docker-Compose yaml files on my homelab, using the Git functionality to sync to my repos and doing some web development. It’s basically an alternative to VSCode or Codium.

Thanks to the devs who work on Kate . If you don’t hear it enough we appreciate you!

  • Ephera@lemmy.ml
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 day ago

    I have a tiny program/script that creates a file in a folder underneath ~/.local/share with basically just a timestamp in the file name and then it opens it in Kate. Certainly somewhat of a workaround, but it works quite well for me.

    • Dave@lemmy.nz
      link
      fedilink
      arrow-up
      1
      ·
      1 day ago

      What does the workflow look like for that? Do you run it in the terminal each time, or do you bind it to a keyboard combo or have an icon on your dock/taskbar or something?

      • Ephera@lemmy.ml
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 day ago

        Well, I have it bound to Super+X, but you could do any of those. I just create a .desktop file for it and then it can be used like a normal application. And well, it is intentionally built so you don’t have to pass command-line flags or see the command output for creating the file.

        So, this is the program I use: https://codeberg.org/trem/jot
        It has basically three larger features, which is adding a file, removing empty files (because you sometimes might end up creating a file, but not using it) and then searching through empty files.
        Honestly, none of these are particularly difficult to throw together in a Bash script yourself, if you don’t feel like using a random program off the internet.

        Basically, for adding a file, this is a crappy version of it:

        data_dir="$HOME/.local/share/notes"
        mkdir -p $data_dir
        date=$(date +%s)
        file_name="$data_dir/${date}.md"
        touch $file_name
        xdg-open $file_name
        

        And for searching through the created files, grep -iR -C2 $data_dir is virtually just as good, too. 🫠