mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-04-03 00:14:20 +00:00
Compare commits
No commits in common. "9e52e49acb7ae79c06ca8cbcae657af8e392c3cd" and "9386fb64b75af1bb44e1f03682d7d906734433bf" have entirely different histories.
9e52e49acb
...
9386fb64b7
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"changelogState": {
|
||||||
|
"lastSeenVersion": "v4.4.3"
|
||||||
|
},
|
||||||
|
"telemetry": {
|
||||||
|
"instanceId": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -616,8 +616,9 @@ binds {
|
|||||||
// which ensures niri always processes them, even when an inhibitor is active.
|
// which ensures niri always processes them, even when an inhibitor is active.
|
||||||
Mod+Escape allow-inhibiting=false { toggle-keyboard-shortcuts-inhibit; }
|
Mod+Escape allow-inhibiting=false { toggle-keyboard-shortcuts-inhibit; }
|
||||||
|
|
||||||
Mod+Shift+E hotkey-overlay-title="Restart Noctalia shell" { spawn "herd" "restart" "noctalia-shell"; }
|
// The quit action will show a confirmation dialog to avoid accidental exits.
|
||||||
Ctrl+Alt+Delete hotkey-overlay-title="Open Noctalia shell session menu" { spawn "noctalia-shell" "ipc" "call" "sessionMenu" "toggle"; }
|
Mod+Shift+E { quit; }
|
||||||
|
Ctrl+Alt+Delete { quit; }
|
||||||
|
|
||||||
// Powers off the monitors. To turn them back on, do any input like
|
// Powers off the monitors. To turn them back on, do any input like
|
||||||
// moving the mouse or pressing any other key.
|
// moving the mouse or pressing any other key.
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"appLauncher": {
|
"appLauncher": {
|
||||||
"terminalCommand": "wezterm start --"
|
"terminalCommand": "wezterm start --",
|
||||||
|
"viewMode": "grid"
|
||||||
},
|
},
|
||||||
"colorSchemes": {
|
"colorSchemes": {
|
||||||
"darkMode": false,
|
"darkMode": false,
|
||||||
|
|||||||
@ -1,8 +1,12 @@
|
|||||||
|
-- Keep WezTerm maximized so that the installer won't be resized.
|
||||||
|
-- https://wezterm.org/config/lua/gui-events/gui-startup.html
|
||||||
local wezterm = require 'wezterm'
|
local wezterm = require 'wezterm'
|
||||||
local config = wezterm.config_builder()
|
local mux = wezterm.mux
|
||||||
|
local config = {}
|
||||||
|
|
||||||
-- Use Xwayland in the LiveCD so that we can change keyboard layout when
|
wezterm.on('gui-startup', function(cmd)
|
||||||
-- WezTerm is running.
|
local tab, pane, window = mux.spawn_window(cmd or {})
|
||||||
config.enable_wayland = false
|
window:gui_window():maximize()
|
||||||
|
end)
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|||||||
@ -25,7 +25,6 @@
|
|||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages hardware)
|
|
||||||
#:use-module (gnu packages imagemagick)
|
#:use-module (gnu packages imagemagick)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages llvm)
|
#:use-module (gnu packages llvm)
|
||||||
@ -69,9 +68,6 @@
|
|||||||
(substitute* "Services/Power/IdleInhibitorService.qml"
|
(substitute* "Services/Power/IdleInhibitorService.qml"
|
||||||
(("systemd-inhibit")
|
(("systemd-inhibit")
|
||||||
(search-input-file inputs "bin/elogind-inhibit")))))
|
(search-input-file inputs "bin/elogind-inhibit")))))
|
||||||
(add-after 'unpack 'reduce-output-size
|
|
||||||
(lambda _
|
|
||||||
(delete-file-recursively "Assets/Screenshots")))
|
|
||||||
(add-after 'install 'make-wrapper
|
(add-after 'install 'make-wrapper
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((script "noctalia-shell"))
|
(let ((script "noctalia-shell"))
|
||||||
@ -93,7 +89,6 @@ exec ~a --config ~a/etc/xdg/quickshell/noctalia-shell \"$@\"~%"
|
|||||||
"bin/cava"
|
"bin/cava"
|
||||||
"bin/cliphist"
|
"bin/cliphist"
|
||||||
"bin/convert"
|
"bin/convert"
|
||||||
"bin/ddcutil"
|
|
||||||
"bin/fastfetch"
|
"bin/fastfetch"
|
||||||
"bin/fc-list"
|
"bin/fc-list"
|
||||||
"bin/find"
|
"bin/find"
|
||||||
@ -123,7 +118,6 @@ exec ~a --config ~a/etc/xdg/quickshell/noctalia-shell \"$@\"~%"
|
|||||||
cava
|
cava
|
||||||
cliphist
|
cliphist
|
||||||
coreutils-minimal
|
coreutils-minimal
|
||||||
ddcutil
|
|
||||||
elogind
|
elogind
|
||||||
fastfetch
|
fastfetch
|
||||||
findutils
|
findutils
|
||||||
|
|||||||
@ -35,7 +35,6 @@
|
|||||||
#:use-module (gnu packages fcitx5)
|
#:use-module (gnu packages fcitx5)
|
||||||
#:use-module (gnu packages fonts)
|
#:use-module (gnu packages fonts)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages guile)
|
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages networking)
|
#:use-module (gnu packages networking)
|
||||||
#:use-module (gnu packages polkit)
|
#:use-module (gnu packages polkit)
|
||||||
@ -313,17 +312,6 @@ compositor.")))
|
|||||||
(file-like noctalia-shell)
|
(file-like noctalia-shell)
|
||||||
"File-like object to provide @command{/bin/noctalia-shell}."))
|
"File-like object to provide @command{/bin/noctalia-shell}."))
|
||||||
|
|
||||||
;; Create ~/.config/noctalia directory, otherwise Noctalia shell won't show up
|
|
||||||
;; on initial startup.
|
|
||||||
(define (%home-noctalia-shell-activation _)
|
|
||||||
(with-imported-modules (source-module-closure '((guix build utils)))
|
|
||||||
#~(begin
|
|
||||||
(use-modules (guix build utils))
|
|
||||||
(let ((xdg-config-home
|
|
||||||
(or (getenv "XDG_CONFIG_HOME")
|
|
||||||
(in-vicinity (getenv "HOME") ".config"))))
|
|
||||||
(mkdir-p (in-vicinity xdg-config-home "noctalia"))))))
|
|
||||||
|
|
||||||
(define %home-noctalia-shell-shepherd
|
(define %home-noctalia-shell-shepherd
|
||||||
(match-record-lambda <home-noctalia-shell-configuration>
|
(match-record-lambda <home-noctalia-shell-configuration>
|
||||||
(noctalia-shell)
|
(noctalia-shell)
|
||||||
@ -341,12 +329,10 @@ compositor.")))
|
|||||||
(service-type
|
(service-type
|
||||||
(name 'home-noctalia-shell)
|
(name 'home-noctalia-shell)
|
||||||
(extensions
|
(extensions
|
||||||
(list (service-extension home-profile-service-type
|
(list (service-extension home-shepherd-service-type
|
||||||
(compose list home-noctalia-shell-configuration-noctalia-shell))
|
%home-noctalia-shell-shepherd)
|
||||||
(service-extension home-activation-service-type
|
(service-extension home-profile-service-type
|
||||||
%home-noctalia-shell-activation)
|
(compose list home-noctalia-shell-configuration-noctalia-shell))))
|
||||||
(service-extension home-shepherd-service-type
|
|
||||||
%home-noctalia-shell-shepherd)))
|
|
||||||
(default-value (home-noctalia-shell-configuration))
|
(default-value (home-noctalia-shell-configuration))
|
||||||
(description "")))
|
(description "")))
|
||||||
|
|
||||||
@ -588,20 +574,7 @@ gtk-key-theme-name = ~a~%"
|
|||||||
,(local-file "../examples/dot-config/xfce4/helpers.rc"))
|
,(local-file "../examples/dot-config/xfce4/helpers.rc"))
|
||||||
;; Prevent Noctalia shell initial screen.
|
;; Prevent Noctalia shell initial screen.
|
||||||
(".cache/noctalia/shell-state.json"
|
(".cache/noctalia/shell-state.json"
|
||||||
,(computed-file "noctalia-shell-state.json"
|
,(local-file "../examples/dot-cache/noctalia/shell-state.json"))
|
||||||
(with-extensions (list guile-json-4)
|
|
||||||
#~(begin
|
|
||||||
(use-modules (json))
|
|
||||||
(call-with-output-file #$output
|
|
||||||
(lambda (port)
|
|
||||||
(scm->json
|
|
||||||
`(("changelogState"
|
|
||||||
("lastSeenVersion"
|
|
||||||
. ,(string-append "v" #$(package-version noctalia-shell))))
|
|
||||||
("telemetry"
|
|
||||||
("instanceId" . "")))
|
|
||||||
port
|
|
||||||
#:pretty #t)))))))
|
|
||||||
|
|
||||||
;; Selected from the default skeletons.
|
;; Selected from the default skeletons.
|
||||||
(".config/gdb/gdbinit" ,%default-gdbinit)
|
(".config/gdb/gdbinit" ,%default-gdbinit)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user