Post History
I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies. I wrote a script that uses the data from pkgstat...
#12: Post edited
- I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies.
I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show non-dependency packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.- I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Not just for installed packages but for all of them.
- [pamac](https://gitlab.manjaro.org/applications/pamac), Graphical Package Manager for Manjaro Linux with Alpm, AUR, Appstream, Flatpak and Snap support, seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.
- Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
- As an alternative, I would consider end-user software the ones that aren't required by any other packages. This isn't perfect, just good enough. For example, [this](https://pastebin.com/hcC4Ax3R) is how I would do this for installed packages.
- How can I identify standalone applications and separate them from libraries/dependencies in the Arch/AUR package lists? The end goal is a trending packages list focused on end-user software rather than background components.
- I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies.
- I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.
- I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Not just for installed packages but for all of them.
- [pamac](https://gitlab.manjaro.org/applications/pamac), Graphical Package Manager for Manjaro Linux with Alpm, AUR, Appstream, Flatpak and Snap support, seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.
- Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
- As an alternative, I would consider end-user software the ones that aren't required by any other packages. This isn't perfect, just good enough. For example, [this](https://pastebin.com/hcC4Ax3R) is how I would do this for installed packages.
- How can I identify standalone applications and separate them from libraries/dependencies in the Arch/AUR package lists? The end goal is a trending packages list focused on end-user software rather than background components.
#11: Post edited
I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies.- I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show non-dependency packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.
- I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Not just for installed packages but for all of them.
- [pamac](https://gitlab.manjaro.org/applications/pamac), Graphical Package Manager for Manjaro Linux with Alpm, AUR, Appstream, Flatpak and Snap support, seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.
- Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
How can I identify standalone applications and separate them from libraries/dependencies in the Arch/AUR package lists? The end goal is a trending packages list focused on discoverable end-user software rather than background components.
- I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies.
- I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show non-dependency packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.
- I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Not just for installed packages but for all of them.
- [pamac](https://gitlab.manjaro.org/applications/pamac), Graphical Package Manager for Manjaro Linux with Alpm, AUR, Appstream, Flatpak and Snap support, seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.
- Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
- As an alternative, I would consider end-user software the ones that aren't required by any other packages. This isn't perfect, just good enough. For example, [this](https://pastebin.com/hcC4Ax3R) is how I would do this for installed packages.
- How can I identify standalone applications and separate them from libraries/dependencies in the Arch/AUR package lists? The end goal is a trending packages list focused on end-user software rather than background components.
#10: Post edited
- I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies.
- I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show non-dependency packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.
- I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Not just for installed packages but for all of them.
The pamac package manager seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.- Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
- How can I identify standalone applications and separate them from libraries/dependencies in the Arch/AUR package lists? The end goal is a trending packages list focused on discoverable end-user software rather than background components.
- I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies.
- I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show non-dependency packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.
- I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Not just for installed packages but for all of them.
- [pamac](https://gitlab.manjaro.org/applications/pamac), Graphical Package Manager for Manjaro Linux with Alpm, AUR, Appstream, Flatpak and Snap support, seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.
- Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
- How can I identify standalone applications and separate them from libraries/dependencies in the Arch/AUR package lists? The end goal is a trending packages list focused on discoverable end-user software rather than background components.
#9: Post edited
I want to generate a list of trending Linux packages that focuses on user-facing applications rather than background libraries and dependencies.- I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show non-dependency packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.
I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them.The pamac package manager seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.How can I identify standalone applications and separate them from libraries/dependencies in my own Linux package lists? The end goal is a trending packages list focused on discoverable end-user software rather than background components.Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
- I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies.
- I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show non-dependency packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.
- I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Not just for installed packages but for all of them.
- The pamac package manager seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.
- Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
- How can I identify standalone applications and separate them from libraries/dependencies in the Arch/AUR package lists? The end goal is a trending packages list focused on discoverable end-user software rather than background components.
#8: Post edited
How to divide linux packages in real software and dependencies?
- How to identify and separate standalone applications from libraries in Linux package lists?
I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac) does this but I still haven't figured out how. I believe [this](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357) is the relevant code.```valathis.set_cursor (new Gdk.Cursor.from_name ("progress", null));current_packages_list_name = "category_%s".printf (category);get_category_pkgs.begin (category, (obj, res) => {var pkgs = get_category_pkgs.end (res);if (view_stack.visible_child_name == "browse" && current_packages_list_name == "category_%s".printf (category)) {view_stack_switcher.title = category_name;populate_packages_list (pkgs);} else {this.set_cursor (new Gdk.Cursor.from_name ("default", null));}});```Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.Since it may not be clear what libraries or dependencies are. To identify applications, I will consider any package that appears in one of the categories in pamac (photo & video, music & audio, productivity, communication & news, education & science, games, utilities, development). These categories seem to be a grouping of packages by theme focusing on end-user software. I identify packages in those pamac categories as applications and treat the remaining packages as libraries/dependencies.
- I want to generate a list of trending Linux packages that focuses on user-facing applications rather than background libraries and dependencies.
- I wrote a [script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) to show non-dependency packages sorted by popularity. However, it doesn't distinguish between applications and libraries, so the output isn't very useful.
- I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them.
- The pamac package manager seems to identify applications vs libraries/dependencies when grouping packages into categories like "Music & Audio" or "Games". As seen in [this code](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357), pamac gets categorized package lists and populates the UI accordingly.
- How can I identify standalone applications and separate them from libraries/dependencies in my own Linux package lists? The end goal is a trending packages list focused on discoverable end-user software rather than background components.
- Since it may not be clear what libraries or dependencies are and I'm already using pamac as an example. I'll consider packages that appear in pamac's categories like Games and Music & Audio as applications, and other packages as libraries/dependencies.
#7: Post edited
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac) does this but I still haven't figured out how. I believe [this](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357) is the relevant code.
- ```vala
- this.set_cursor (new Gdk.Cursor.from_name ("progress", null));
- current_packages_list_name = "category_%s".printf (category);
- get_category_pkgs.begin (category, (obj, res) => {
- var pkgs = get_category_pkgs.end (res);
- if (view_stack.visible_child_name == "browse" && current_packages_list_name == "category_%s".printf (category)) {
- view_stack_switcher.title = category_name;
- populate_packages_list (pkgs);
- } else {
- this.set_cursor (new Gdk.Cursor.from_name ("default", null));
- }
- });
- ```
- Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
Since it may not be clear what libraries or dependencies are. To identify applications, I will consider any package that appears in one of the categories in pamac (photo & video, music & audio, productivity, communication & news, education & science, games, utilities, development). These categories seem to be a grouping of packages by theme focusing on end-user software. I identify packages in those pamac categories as applications and treat the remaining packages as libraries/dependencies
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac) does this but I still haven't figured out how. I believe [this](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357) is the relevant code.
- ```vala
- this.set_cursor (new Gdk.Cursor.from_name ("progress", null));
- current_packages_list_name = "category_%s".printf (category);
- get_category_pkgs.begin (category, (obj, res) => {
- var pkgs = get_category_pkgs.end (res);
- if (view_stack.visible_child_name == "browse" && current_packages_list_name == "category_%s".printf (category)) {
- view_stack_switcher.title = category_name;
- populate_packages_list (pkgs);
- } else {
- this.set_cursor (new Gdk.Cursor.from_name ("default", null));
- }
- });
- ```
- Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
- Since it may not be clear what libraries or dependencies are. To identify applications, I will consider any package that appears in one of the categories in pamac (photo & video, music & audio, productivity, communication & news, education & science, games, utilities, development). These categories seem to be a grouping of packages by theme focusing on end-user software. I identify packages in those pamac categories as applications and treat the remaining packages as libraries/dependencies.
#6: Post edited
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac) does this but I still haven't figured out how. I believe [this](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357) is the relevant code.
- ```vala
- this.set_cursor (new Gdk.Cursor.from_name ("progress", null));
- current_packages_list_name = "category_%s".printf (category);
- get_category_pkgs.begin (category, (obj, res) => {
- var pkgs = get_category_pkgs.end (res);
if (view_stack.visible_child_name == "browse" && current_packages_list_name == "category_%s".printf (category)) {- view_stack_switcher.title = category_name;
- populate_packages_list (pkgs);
- } else {
- this.set_cursor (new Gdk.Cursor.from_name ("default", null));
- }
- });
- ```
Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac) does this but I still haven't figured out how. I believe [this](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357) is the relevant code.
- ```vala
- this.set_cursor (new Gdk.Cursor.from_name ("progress", null));
- current_packages_list_name = "category_%s".printf (category);
- get_category_pkgs.begin (category, (obj, res) => {
- var pkgs = get_category_pkgs.end (res);
- if (view_stack.visible_child_name == "browse" && current_packages_list_name == "category_%s".printf (category)) {
- view_stack_switcher.title = category_name;
- populate_packages_list (pkgs);
- } else {
- this.set_cursor (new Gdk.Cursor.from_name ("default", null));
- }
- });
- ```
- Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
- Since it may not be clear what libraries or dependencies are. To identify applications, I will consider any package that appears in one of the categories in pamac (photo & video, music & audio, productivity, communication & news, education & science, games, utilities, development). These categories seem to be a grouping of packages by theme focusing on end-user software. I identify packages in those pamac categories as applications and treat the remaining packages as libraries/dependencies
#5: Post edited
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac) does this but I still haven't figured out how. I believe [this](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357) is the relevant code.
- ```vala
get_pending_pkgs.begin ((obj, res) => {var pkgs = get_pending_pkgs.end (res);if (view_stack.visible_child_name == "browse" && current_packages_list_name == "Pending") {- populate_packages_list (pkgs);
- } else {
- this.set_cursor (new Gdk.Cursor.from_name ("default", null));
- }
- });
- ```
- Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac) does this but I still haven't figured out how. I believe [this](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357) is the relevant code.
- ```vala
- this.set_cursor (new Gdk.Cursor.from_name ("progress", null));
- current_packages_list_name = "category_%s".printf (category);
- get_category_pkgs.begin (category, (obj, res) => {
- var pkgs = get_category_pkgs.end (res);
- if (view_stack.visible_child_name == "browse" && current_packages_list_name == "category_%s".printf (category)) {
- view_stack_switcher.title = category_name;
- populate_packages_list (pkgs);
- } else {
- this.set_cursor (new Gdk.Cursor.from_name ("default", null));
- }
- });
- ```
- Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
#4: Post edited
I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac/-/blob/master/src/manager_window.vala) does this but I still haven't figured out how. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. How can I separate standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac) does this but I still haven't figured out how. I believe [this](https://gitlab.manjaro.org/applications/pamac/-/blob/b6d4815b051d4048f00fa05a57959a5681a031b5/src/manager_window.vala#L3317-3357) is the relevant code.
- ```vala
- get_pending_pkgs.begin ((obj, res) => {
- var pkgs = get_pending_pkgs.end (res);
- if (view_stack.visible_child_name == "browse" && current_packages_list_name == "Pending") {
- populate_packages_list (pkgs);
- } else {
- this.set_cursor (new Gdk.Cursor.from_name ("default", null));
- }
- });
- ```
- Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
#3: Post edited
I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac/-/blob/master/src/manager_window.vala) does this but I still haven't figured out how. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac/-/blob/master/src/manager_window.vala) does this but I still haven't figured out how. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. How can I separate standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
#2: Post edited
I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac/-/blob/master/src/manager_window.vala) does this but I still haven't figured out how. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
- I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac/-/blob/master/src/manager_window.vala) does this but I still haven't figured out how. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages, not just installed ones but all of them. Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.
#1: Initial revision
How to divide linux packages in real software and dependencies?
I want to show packages that aren't dependencies sorted with a trending algorithm. I wrote [a script](https://git.disroot.org/hirrolot19/trending-linux-packages) that uses the data from [pkgstats](https://pkgstats.archlinux.de) but it doesn't distinguish between software and libraries so it's very difficult to find anything useful in the output. I've seen the [pamac program](https://gitlab.manjaro.org/applications/pamac/-/blob/master/src/manager_window.vala) does this but I still haven't figured out how. I want to identify and separate standalone applications from libraries and dependencies for both Arch official repositories and AUR packages. Does anyone have tips for identifying and separating standalone applications from libraries and dependencies in Linux package lists? My end goal is a trending packages list that focuses on user-facing software rather than background libraries.