Re: Stop using direct syscall(2) from perl(1)

2023-08-17 Thread George Koehler
On Thu, 3 Aug 2023 18:43:21 -0700 Andrew Hewus Fresh wrote: > Here's a new version, I think I addressed all of the feedback I got, > although may have missed something. ok gkoehler@ You sent this new version 2 weeks ago, but I didn't build it until yesterday. syscall_emulator.t passes on

Re: bioctl: do not confirm new passphrases on stdin

2023-08-17 Thread Omar Polo
On 2023/08/17 09:32:43 +, Klemens Nanni wrote: > > I think it would be less ugly to have an iteractive global (or similar) > > and clear that when -s is given (the correct way to write the above would > > require masking rpp_flag). > > Done. This makes all of the following behave as

Re: diff: trigger acpiac_refresh when acpibat notification

2023-08-17 Thread joshua stein
On Thu, 17 Aug 2023 at 16:12:07 +0900, YASUOKA Masahiko wrote: > Hi, > > Update the AC status when the battery notification is happened. > Because the AC status notification doesn't happen on some machines. > My vaio actually has this problem. > > Also Linux is doing the same thing > >

Re: diff: trigger acpiac_refresh when acpibat notification

2023-08-17 Thread YASUOKA Masahiko
Let me clarify some. On Thu, 17 Aug 2023 16:12:07 +0900 (JST) YASUOKA Masahiko wrote: > Update the AC status when the battery notification is happened. > Because the AC status notification doesn't happen on some machines. At that time (plugging or unpluggin the AC), a battery notification

Re: bioctl: do not confirm new passphrases on stdin

2023-08-17 Thread Klemens Nanni
On Thu, Aug 17, 2023 at 06:43:36PM +1000, Joel Sing wrote: > I agree with the intent, however the man page should probably reflect this > change (i.e. -s makes it non-interactive and you will not get confirmation). Done. > > > Index: bioctl.c > >

Re: diff: trigger acpiac_refresh when acpibat notification

2023-08-17 Thread YASUOKA Masahiko
Hi, Thank you for the Japanese subtitle. It helps me. :) On Thu, 17 Aug 2023 17:10:51 +0900 "lain." wrote: > If I understand correctly, you want to check the battery level, and give > you a notification when battery is low, right? > 正しく理解しているなら、YASUOKAさんはバッテリーのレベルを確認し、 >

Re: bioctl: do not confirm new passphrases on stdin

2023-08-17 Thread Joel Sing
On 23-08-17 02:21:18, Klemens Nanni wrote: > On Fri, Aug 11, 2023 at 03:44:46PM +, Klemens Nanni wrote: > > On Wed, Aug 02, 2023 at 10:37:36AM +, Klemens Nanni wrote: > > > Creating new volumes prompts > > > Passphrase: > > > Re-type passphrase: > > > which is sane for interative

Re: diff: trigger acpiac_refresh when acpibat notification

2023-08-17 Thread lain.
If I understand correctly, you want to check the battery level, and give you a notification when battery is low, right? 正しく理解しているなら、YASUOKAさんはバッテリーのレベルを確認し、 バッテリーが低くなったら通知を受け取りたい、ということですよね? In this case, you can use apm for that. その場合、それには「apm」を使うことができます。 Battery level (percent)

Re: bioctl: do not confirm new passphrases on stdin

2023-08-17 Thread Omar Polo
On 2023/08/17 02:21:18 +, Klemens Nanni wrote: > On Fri, Aug 11, 2023 at 03:44:46PM +, Klemens Nanni wrote: > > On Wed, Aug 02, 2023 at 10:37:36AM +, Klemens Nanni wrote: > > > Creating new volumes prompts > > > Passphrase: > > > Re-type passphrase: > > > which is sane for

diff: trigger acpiac_refresh when acpibat notification

2023-08-17 Thread YASUOKA Masahiko
Hi, Update the AC status when the battery notification is happened. Because the AC status notification doesn't happen on some machines. My vaio actually has this problem. Also Linux is doing the same thing https://github.com/torvalds/linux/blob/v6.4/drivers/acpi/ac.c#L165-L183 ok? comments?