Search Criteria
Package Details: netctl-tray 0.2.2-1
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/PonasKovas/netctl-tray |
Keywords: | netctl notifications qt5 tray |
Licenses: | |
Conflicts: | |
Submitter: | Ponas |
Maintainer: | Ponas |
Last Packager: | Ponas |
Votes: | 3 |
Popularity: | 0.007330 |
First Submitted: | 2019-09-21 20:39 |
Last Updated: | 2020-09-10 14:26 |
Latest Comments
darnrain commented on 2020-07-04 16:58
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
Done, and thanks!
oscillope commented on 2020-01-05 20:38
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
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.