diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2022-04-09 15:51:30 -0600 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2022-04-09 15:55:27 -0600 |
| commit | faaf7cedf1d10c54cc7be27c1d2b125e0b99b7e5 (patch) | |
| tree | 119ad11a6c6e40369f3c03aab29d20d837d82110 /src/Internal/Windows.hs | |
| parent | 28494be6925bc341534ad43c3523343e6c95a01a (diff) | |
| download | rde-faaf7cedf1d10c54cc7be27c1d2b125e0b99b7e5.tar.gz rde-faaf7cedf1d10c54cc7be27c1d2b125e0b99b7e5.tar.bz2 rde-faaf7cedf1d10c54cc7be27c1d2b125e0b99b7e5.zip | |
[Experimental] - Attempting to create typesafy way to navigate layouts.
Diffstat (limited to 'src/Internal/Windows.hs')
| -rw-r--r-- | src/Internal/Windows.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Internal/Windows.hs b/src/Internal/Windows.hs index 45fea95..35f093c 100644 --- a/src/Internal/Windows.hs +++ b/src/Internal/Windows.hs @@ -54,7 +54,7 @@ forAllWindows fn = do getFocusedWindow :: X (Maybe Window) getFocusedWindow = do - (peek . windowset) <$> get + peek . windowset <$> get {- Finds a Window and returns the screen its on and the workspace its on. - Returns nothing if the window doesn't exist. |