more hyprland plugins, bluetooth fixes, etc
This commit is contained in:
parent
69b6c71951
commit
608d0859d3
9 changed files with 129 additions and 57 deletions
|
@ -28,3 +28,4 @@ bind = $mod SHIFT, s, exec, grim -g "$(slurp)" - | wl-copy -t image/png && notif
|
||||||
bind = , Print, exec, grim - | wl-copy -t iamge/png && notify-send -t 3000 "Hyprland" "Full screen copied to clipboard"
|
bind = , Print, exec, grim - | wl-copy -t iamge/png && notify-send -t 3000 "Hyprland" "Full screen copied to clipboard"
|
||||||
bind = SHIFT, Print, exec, slurp -p | grim -g - - | convert - txt:- | tail -n 1 | awk '{print $3}' | wl-copy
|
bind = SHIFT, Print, exec, slurp -p | grim -g - - | convert - txt:- | tail -n 1 | awk '{print $3}' | wl-copy
|
||||||
|
|
||||||
|
bind = $mod, tab, hyprexpo:expo, toggle
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
exec-once = hyprctl plugin load /run/current-system/profile/lib/libhy3.so
|
exec-once = hyprctl plugin load /run/current-system/profile/lib/libhy3.so
|
||||||
exec-once = hyprctl plugin load /run/current-system/profile/lib/libhyprbars.so
|
exec-once = hyprctl plugin load /run/current-system/profile/lib/libhyprbars.so
|
||||||
|
exec-once = hyprctl plugin load /run/current-system/profile/lib/libhyprexpo.so
|
||||||
|
|
3
home/config/xdg/portals.conf
Normal file
3
home/config/xdg/portals.conf
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[preferred]
|
||||||
|
default=hyprland;gtk
|
||||||
|
org.freedesktop.impl.portal.FileChooser=gtk
|
|
@ -131,6 +131,7 @@
|
||||||
("desktop-common" ,(local-file "config/desktop-common" #:recursive? #t))
|
("desktop-common" ,(local-file "config/desktop-common" #:recursive? #t))
|
||||||
("mimeapps.list" ,(local-file "config/xdg/mimeapps.list" #:recursive? #t))
|
("mimeapps.list" ,(local-file "config/xdg/mimeapps.list" #:recursive? #t))
|
||||||
("user-dirs.dirs" ,(local-file "config/xdg/user-dirs.dirs" #:recursive? #t))
|
("user-dirs.dirs" ,(local-file "config/xdg/user-dirs.dirs" #:recursive? #t))
|
||||||
|
("xdg-desktop-portal/portals.conf" ,(local-file "config/xdg/portals.conf"))
|
||||||
("starship.toml" ,(local-file "config/starship/starship.toml" #:recursive? #t))
|
("starship.toml" ,(local-file "config/starship/starship.toml" #:recursive? #t))
|
||||||
("home-manager/home.nix" ,(local-file "home.nix" #:recursive? #t)) ))
|
("home-manager/home.nix" ,(local-file "home.nix" #:recursive? #t)) ))
|
||||||
|
|
||||||
|
@ -142,6 +143,7 @@
|
||||||
(".local/share/fonts" ,(local-file "local/fonts" #:recursive? #t))
|
(".local/share/fonts" ,(local-file "local/fonts" #:recursive? #t))
|
||||||
(".local/share/applications" ,(local-file "local/applications" #:recursive? #t))
|
(".local/share/applications" ,(local-file "local/applications" #:recursive? #t))
|
||||||
(".local/share/icons" ,(local-file "local/icons" #:recursive? #t))
|
(".local/share/icons" ,(local-file "local/icons" #:recursive? #t))
|
||||||
|
(".local/share/dbus-1/services" ,(local-file "local/dbus/services" #:recursive? #t))
|
||||||
(".nix-channels" ,(local-file "nix-channels"))
|
(".nix-channels" ,(local-file "nix-channels"))
|
||||||
(".gitconfig" ,(local-file "config/git/gitconfig"))))
|
(".gitconfig" ,(local-file "config/git/gitconfig"))))
|
||||||
|
|
||||||
|
|
34
modules/freya/packages/linux.scm
Normal file
34
modules/freya/packages/linux.scm
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
(define-module (freya packages linux)
|
||||||
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix gexp)
|
||||||
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages linux)
|
||||||
|
#:use-module (gnu packages python-xyz)
|
||||||
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (guix utils))
|
||||||
|
|
||||||
|
(define-public bluez-new
|
||||||
|
(package
|
||||||
|
(inherit bluez)
|
||||||
|
(version "5.72")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://kernel.org/linux/bluetooth/bluez-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0vjk4ihywzv8k07bxq7clqgi2afrw54nfp0gcnxw35m98nipz7a9"))))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "--sysconfdir=/etc"
|
||||||
|
"--localstatedir=/var"
|
||||||
|
"--enable-library"
|
||||||
|
"--disable-manpages"
|
||||||
|
"--disable-systemd"
|
||||||
|
"--enable-hid2hci"
|
||||||
|
(string-append "--with-dbusconfdir=" #$output "/etc")
|
||||||
|
(string-append "--with-udevdir=" #$output "/lib/udev"))))))
|
16
modules/freya/packages/networking.scm
Normal file
16
modules/freya/packages/networking.scm
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
(define-module (freya packages networking)
|
||||||
|
#:use-module (guix gexp)
|
||||||
|
#:use-module (guix packages)
|
||||||
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages networking)
|
||||||
|
#:use-module (freya packages linux)
|
||||||
|
#:use-module (guix utils))
|
||||||
|
|
||||||
|
(define-public blueman-new
|
||||||
|
(package
|
||||||
|
(inherit blueman)
|
||||||
|
(inputs
|
||||||
|
(modify-inputs
|
||||||
|
(package-inputs blueman)
|
||||||
|
(delete "bluez")
|
||||||
|
(prepend bluez-new)))))
|
|
@ -20,6 +20,7 @@
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system meson)
|
#:use-module (guix build-system meson)
|
||||||
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix build utils)
|
#:use-module (guix build utils)
|
||||||
#:use-module (rosenthal packages wm)
|
#:use-module (rosenthal packages wm)
|
||||||
#:use-module (rosenthal packages freedesktop)
|
#:use-module (rosenthal packages freedesktop)
|
||||||
|
@ -201,12 +202,13 @@
|
||||||
(synopsis "i3 / sway like layout for hyprland.")
|
(synopsis "i3 / sway like layout for hyprland.")
|
||||||
(description "Hyprland plugin for an i3 / sway like manual tiling layout")))
|
(description "Hyprland plugin for an i3 / sway like manual tiling layout")))
|
||||||
|
|
||||||
|
(define-syntax hyprland-plugin-impl
|
||||||
(define-public hyprland-plugin-hyprbars
|
(syntax-rules ()
|
||||||
|
((_ plugin)
|
||||||
(let ((commit "fd133914bf1921db2a26627698f914478f6a9471")
|
(let ((commit "fd133914bf1921db2a26627698f914478f6a9471")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
(package
|
(package
|
||||||
(name "hyprland-plugin-hyprbars")
|
(name (string-append "hyprland-plugin-" plugin))
|
||||||
(version (git-version "0.40.0" revision commit))
|
(version (git-version "0.40.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -224,24 +226,43 @@
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _ (chdir "../source/hyprbars/"))))))
|
(lambda _ (chdir (string-append "../source/" plugin "/")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config
|
||||||
|
gcc-13))
|
||||||
(inputs
|
(inputs
|
||||||
(list pango
|
(list gcc-13
|
||||||
gcc-13
|
pango
|
||||||
libinput
|
libinput
|
||||||
hyprland-protocols
|
hyprland-protocols
|
||||||
hyprwayland-scanner
|
hyprwayland-scanner
|
||||||
hyprlang
|
|
||||||
hyprland
|
hyprland
|
||||||
|
hyprlang
|
||||||
wayland
|
wayland
|
||||||
wlroots-for-hyprland))
|
wlroots-for-hyprland))
|
||||||
(license license:bsd-3)
|
(license license:bsd-3)
|
||||||
(home-page "https://github.com/hyprwm/hyprland-plugins")
|
(home-page "https://github.com/hyprwm/hyprland-plugins")
|
||||||
(synopsis "adds simple title bars to windows")
|
(synopsis (string-append "official " plugin " plugin for hyprland"))
|
||||||
(description "adds simple title bars to windows"))))
|
(description (string-append "official " plugin " plugin for hyprland")))))))
|
||||||
|
|
||||||
|
(define-public hyprland-plugins
|
||||||
|
(package
|
||||||
|
(name "hyprland-plugins")
|
||||||
|
(version "0.40.0")
|
||||||
|
(source #f)
|
||||||
|
(build-system trivial-build-system)
|
||||||
|
(arguments '(#:builder (begin (mkdir %output) #t)))
|
||||||
|
(license license:bsd-3)
|
||||||
|
(home-page "https://github.com/hyprwm/hyprland-plugins")
|
||||||
|
(synopsis "A collection of all the official hyprland plugins")
|
||||||
|
(description "A metapackage containing inputs for each official plugin")
|
||||||
|
(propagated-inputs
|
||||||
|
(list (hyprland-plugin-impl "borders-plus-plus")
|
||||||
|
(hyprland-plugin-impl "csgo-vulkan-fix")
|
||||||
|
(hyprland-plugin-impl "hyprbars")
|
||||||
|
(hyprland-plugin-impl "hyprexpo")
|
||||||
|
(hyprland-plugin-impl "hyprtrails")
|
||||||
|
(hyprland-plugin-impl "hyprwinwrap")))))
|
||||||
|
|
||||||
(define-public hyprlock
|
(define-public hyprlock
|
||||||
(let ((commit "d9a6229434fba475ea42b634ee2f03919236798d")
|
(let ((commit "d9a6229434fba475ea42b634ee2f03919236798d")
|
||||||
|
|
|
@ -31,6 +31,8 @@
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
#:use-module (freya packages wm)
|
#:use-module (freya packages wm)
|
||||||
#:use-module (freya packages certs)
|
#:use-module (freya packages certs)
|
||||||
|
#:use-module (freya packages linux)
|
||||||
|
#:use-module (freya packages networking)
|
||||||
#:use-module (freya packages virtualization))
|
#:use-module (freya packages virtualization))
|
||||||
|
|
||||||
(define %my-base-packages
|
(define %my-base-packages
|
||||||
|
@ -118,7 +120,8 @@
|
||||||
; xdg
|
; xdg
|
||||||
"xdg-utils"
|
"xdg-utils"
|
||||||
"xdg-desktop-portal"
|
"xdg-desktop-portal"
|
||||||
"xdg-desktop-portal-wlr"
|
;"xdg-desktop-portal-wlr"
|
||||||
|
"xdg-desktop-portal-gtk"
|
||||||
"xdg-desktop-portal-hyprland"
|
"xdg-desktop-portal-hyprland"
|
||||||
|
|
||||||
; firmware
|
; firmware
|
||||||
|
@ -159,8 +162,6 @@
|
||||||
"pinentry"
|
"pinentry"
|
||||||
"light"
|
"light"
|
||||||
"brightnessctl"
|
"brightnessctl"
|
||||||
"bluez"
|
|
||||||
"blueman"
|
|
||||||
"wireguard-tools"
|
"wireguard-tools"
|
||||||
"fprintd"
|
"fprintd"
|
||||||
"wireplumber"
|
"wireplumber"
|
||||||
|
@ -176,10 +177,12 @@
|
||||||
virt-manager-new
|
virt-manager-new
|
||||||
freya-ca-certs
|
freya-ca-certs
|
||||||
hyprland-plugin-hy3
|
hyprland-plugin-hy3
|
||||||
hyprland-plugin-hyprbars
|
hyprland-plugins
|
||||||
hyprlock
|
hyprlock
|
||||||
hyprpaper
|
hyprpaper
|
||||||
hypridle)
|
hypridle
|
||||||
|
bluez-new
|
||||||
|
blueman-new)
|
||||||
%my-base-packages))
|
%my-base-packages))
|
||||||
|
|
||||||
;; Below is the list of system services. TO search for available
|
;; Below is the list of system services. TO search for available
|
||||||
|
@ -213,6 +216,7 @@
|
||||||
(service virtlog-service-type)
|
(service virtlog-service-type)
|
||||||
(service bluetooth-service-type
|
(service bluetooth-service-type
|
||||||
(bluetooth-configuration
|
(bluetooth-configuration
|
||||||
|
(bluez bluez-new)
|
||||||
(experimental #t)
|
(experimental #t)
|
||||||
(fast-connectable? #t)))
|
(fast-connectable? #t)))
|
||||||
(service pam-limits-service-type)
|
(service pam-limits-service-type)
|
||||||
|
|
10
node_modules/.yarn-integrity
generated
vendored
10
node_modules/.yarn-integrity
generated
vendored
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"systemParams": "linux-x64-64",
|
|
||||||
"modulesFolders": [],
|
|
||||||
"flags": [],
|
|
||||||
"linkedModules": [],
|
|
||||||
"topLevelPatterns": [],
|
|
||||||
"lockfileEntries": {},
|
|
||||||
"files": [],
|
|
||||||
"artifacts": {}
|
|
||||||
}
|
|
Loading…
Reference in a new issue