mirror of
https://github.com/ebeem/guile-swayer.git
synced 2024-11-16 07:47:32 +01:00
export all modules under sjson and swayipc
This commit is contained in:
parent
d5a0d68c0b
commit
3511abd7d4
11 changed files with 12 additions and 31 deletions
|
@ -1,4 +1,4 @@
|
|||
(use-modules (swayipc dispatcher))
|
||||
(use-modules (swayipc))
|
||||
|
||||
(sway-output "HDMI-A-2" "pos 0 0 res 1920x1080")
|
||||
(sway-output "DP-1" "pos 1920 0 res 1920x1080")
|
||||
|
|
|
@ -24,11 +24,7 @@
|
|||
(modules workspace-grid)
|
||||
(modules auto-reload)
|
||||
(modules which-key)
|
||||
(swayipc connection)
|
||||
(swayipc records)
|
||||
(swayipc info)
|
||||
(swayipc events)
|
||||
(swayipc dispatcher))
|
||||
(swayipc))
|
||||
|
||||
;; load look and feel
|
||||
(load "behavior.scm")
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
(use-modules (modules kbd)
|
||||
(modules general)
|
||||
(swayipc info)
|
||||
(swayipc records)
|
||||
(swayipc)
|
||||
(ice-9 popen)
|
||||
(srfi srfi-18)
|
||||
(ice-9 textual-ports))
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
;; (auto-reload-init)
|
||||
|
||||
(define-module (modules auto-reload)
|
||||
#:use-module (swayipc dispatcher)
|
||||
#:use-module (swayipc)
|
||||
#:use-module (system foreign)
|
||||
#:use-module (system foreign-library)
|
||||
#:use-module (srfi srfi-1)
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
(define-module (modules general)
|
||||
#:use-module (sjson parser)
|
||||
#:use-module (swayipc dispatcher)
|
||||
#:use-module (swayipc events)
|
||||
#:use-module (swayipc records)
|
||||
#:use-module (sjson)
|
||||
#:use-module (swayipc)
|
||||
#:use-module (srfi srfi-18)
|
||||
#:use-module (ice-9 hash-table)
|
||||
#:use-module (ice-9 string-fun)
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
(define-module (modules which-key)
|
||||
#:use-module (swayipc records)
|
||||
#:use-module (swayipc info)
|
||||
#:use-module (swayipc dispatcher)
|
||||
#:use-module (swayipc events)
|
||||
#:use-module (modules general)
|
||||
#:use-module (swayipc)
|
||||
#:use-module (ice-9 hash-table)
|
||||
#:use-module (srfi srfi-18)
|
||||
#:export (which-key-init
|
||||
|
|
|
@ -7,10 +7,7 @@
|
|||
;; (workspace-grid-init)
|
||||
|
||||
(define-module (modules workspace-grid)
|
||||
#:use-module (swayipc records)
|
||||
#:use-module (swayipc info)
|
||||
#:use-module (swayipc dispatcher)
|
||||
#:use-module (swayipc events)
|
||||
#:use-module (swayipc)
|
||||
|
||||
#:export (workspace-grid-workspaces
|
||||
workspace-grid-columns
|
||||
|
|
|
@ -7,10 +7,7 @@
|
|||
;; (workspace-groups-init)
|
||||
|
||||
(define-module (modules workspace-groups)
|
||||
#:use-module (swayipc records)
|
||||
#:use-module (swayipc info)
|
||||
#:use-module (swayipc dispatcher)
|
||||
#:use-module (swayipc events)
|
||||
#:use-module (swayipc)
|
||||
|
||||
#:export (workspace-groups-init
|
||||
workspace-groups-configure
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#:use-module (swayipc records)
|
||||
#:use-module (srfi srfi-9)
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (sjson parser)
|
||||
#:use-module (sjson)
|
||||
|
||||
#:export (SWAY-ORIENTATION-HORIZONTAL
|
||||
SWAY-ORIENTATION-VERTICAL
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#:use-module (swayipc connection)
|
||||
#:use-module (swayipc records)
|
||||
#:use-module (oop goops)
|
||||
#:use-module (sjson parser)
|
||||
#:use-module (sjson)
|
||||
#:use-module (srfi srfi-9)
|
||||
#:use-module (srfi srfi-1)
|
||||
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
(define-module (swayipc records)
|
||||
#:use-module (oop goops)
|
||||
#:use-module (sjson record)
|
||||
#:use-module (sjson parser)
|
||||
#:use-module (sjson builder)
|
||||
#:use-module (sjson)
|
||||
|
||||
#:export (<sway-rect>
|
||||
scm->sway-rect
|
||||
|
|
Loading…
Reference in a new issue