Search Criteria
Package Details: netctl-tray 0.3.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/netctl-tray.git (read-only, click to copy) |
---|---|
Package Base: | netctl-tray |
Description: | A lightweight netctl tray app with notifications |
Upstream URL: | https://github.com/DanielcoderX/netctl-tray |
Keywords: | netctl notifications qt5 rust tray |
Licenses: | MIT |
Conflicts: | netctl-tray-auto |
Submitter: | Ponas |
Maintainer: | DanielcoderX |
Last Packager: | DanielcoderX |
Votes: | 4 |
Popularity: | 0.000000 |
First Submitted: | 2019-09-21 20:39 (UTC) |
Last Updated: | 2023-07-26 14:27 (UTC) |
Dependencies (4)
- polkit (polkit-gitAUR, polkit-consolekitAUR)
- qt5-base (qt5-base-gitAUR, qt5-base-headlessAUR)
- cmake (cmake-gitAUR) (make)
- rustup (rustup-gitAUR) (make)
Latest Comments
schrmh commented on 2023-03-17 01:12 (UTC)
darnrain commented on 2020-07-04 16:58 (UTC) (edited on 2020-07-04 18:19 (UTC) by darnrain)
Just a heads up I was getting error message "Can't update tray state: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }"
I used sudo wifi-menu to make my profiles, netctl-tray did not have access to the profiles.
sudo chmod 644 /etc/netctl/*
Fixed the issue
make sure you also add you self to the network and wheel groups.
sudo usermod -a -G wheel,network <user>
Ponas commented on 2020-01-06 14:12 (UTC)
Done, and thanks!
oscillope commented on 2020-01-05 20:38 (UTC)
I think cmake should be added as a make depencency, as the package fails to build without it.
thejazzroot commented on 2019-09-22 11:26 (UTC)
Great job! I've got some comments on PKGBUILD though.
First and foremost, when using
install
, please use mode (permissions) explicitly. Files such as.svg
should not have mode 755. Refer toinstall(1)
manpage.Second of all, please refer to Arch package guidelines for more information on directories.
/opt
should contain "large, self-contained packages". In practice, it means that it contains programs packaged the Windows way, like inProgram Files
. Your package is specific to Linux, so please follow Arch guidelines to avoid confusion.There is also a recommendation in Arch package guidelines for Rust to build a package with a
--locked
flag.Try to find a way not to use
sudo
. I cannot find any info on that right now, but I believe, that programs with root privileges should be launched and managed by systemd or other init system.