diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-17 13:35:48 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-17 13:39:26 +0900 |
| commit | cd5959fe5ab04786cd5dee3cf09f725229ae7c7b (patch) | |
| tree | c0dae3f950528e7c3b6d7359441ee8aeb9a488cd /cmd | |
| parent | 08c35ca24fabc41268411cec14ea386a6d87ece9 (diff) | |
ext: isolate from container/std
These are too general to belong in the container package. This targets the v0.4 release to reduce the wrapper maintenance burden.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/hakurei/command.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/hakurei/command.go b/cmd/hakurei/command.go index bf638e23..2b0752ea 100644 --- a/cmd/hakurei/command.go +++ b/cmd/hakurei/command.go @@ -16,7 +16,7 @@ import ( "hakurei.app/command" "hakurei.app/container/check" "hakurei.app/container/fhs" - "hakurei.app/container/std" + "hakurei.app/ext" "hakurei.app/hst" "hakurei.app/internal/dbus" "hakurei.app/internal/env" @@ -186,7 +186,7 @@ func buildCommand(ctx context.Context, msg message.Msg, early *earlyHardeningErr ); err != nil { log.Fatal(err) } - config.SchedPriority = std.Int(flagSchedPriority) + config.SchedPriority = ext.Int(flagSchedPriority) // bind GPU stuff if et&(hst.EX11|hst.EWayland) != 0 { |
