npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

kas-installer

v0.1.11

Published

Installs KDE Activity Scripts

Downloads

7

Readme

KDE Activity Script Installer

Iron Oxide Labs LLC presents the KDE Activity Script Installer or "kas-installer" for short. The kas-installer was developed to simplify the management of scripts for the lifecycle events in KDE Activities. The kas-installer automates the process of searching for scripts in a designated folder and copying them to the paths used by KDE Activities. This enables KDE Activities to use them based on the assigned activity name and lifecycle events. Here's how it works:

  1. Script Matching: The installer matches the name of the activity and the lifecycle event to the name of the script you provide.

  2. Querying KDE: It then queries KDE to retrieve the unique IDs of the named activities.

  3. Copying Scripts: Once the IDs are obtained, the installer copies your scripts to the paths expected by KDE, making them available for the specified activities and events.

Prerequisites

  1. qdbus: sudo apt install qtchooser

Installation

You can install the kas-installer globally using npm with the following command:

npm install -g kas-installer

Make sure that all prequisites are already installed before using it.

Script Naming Convention

To match script files to KDE activities and lifecycle events, kas-installer follows a strict file naming convention. The script file name is expected to include the KDE activity name in lowercase, with special characters removed, spaces replaced by dashes, followed by a dash and the name of the lifecycle event.

For example:

  • If you have a KDE Activity called "Filing Taxes & Accounting" and you want a script to run when that activity is started, you should name your script: filing-taxes-accounting-started.sh
  • For a script to run when the activity is stopped, the filename should be: filing-taxes-accounting-stopped.sh
  • Similarly, for other lifecycle events, follow the pattern: activity-name-lifecycle-event.sh

Basic Usage

Installing Scripts

To install scripts located in the "~/KDE Activity Scripts/" folder, simply run the following command:

kas-installer -s "~/KDE Activity Scripts/"

Dry Run (No Changes)

If you want to perform a dry run without making any changes to the file system, add the -n flag like this:

kas-installer -n -s "~/KDE Activity Scripts/"

Integration with Node.js Projects

For Node.js projects, you can place your scripts in the "./src/scripts" folder and add the following configuration to your package.json file:

{
	"scripts": {
		"start": "kas-installer -d"
	}
}

Now, you can simply run the following command to install your scripts after making updates:

npm run start

Automatic Uninstallation of Old Scripts

If you have outdated scripts that you wish to remove in the future, you can do so by adding the -d flag during the next run of kas-installer. For example:

kas-installer -d [other options...]

This will remove the old scripts while installing the new ones.

Example Node.js

Node Project Example

Links

  • NPM Package: https://www.npmjs.com/package/kas-installer
  • Iron Oxide Labs LLC: https://www.ironoxidelabs.com