diff options
author | Adrian Kummerlaender | 2018-10-13 21:02:45 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2018-10-13 21:02:45 +0200 |
commit | 20c2d19f08a5e8ed626ab05426c6ab52f100a109 (patch) | |
tree | b4f4fcea9a1700ab36c6773e0ef22a0f35e52e61 /gui | |
parent | e408b94e762d995accaa062b5d9d54e0c567d18c (diff) | |
download | nixos_home-20c2d19f08a5e8ed626ab05426c6ab52f100a109.tar nixos_home-20c2d19f08a5e8ed626ab05426c6ab52f100a109.tar.gz nixos_home-20c2d19f08a5e8ed626ab05426c6ab52f100a109.tar.bz2 nixos_home-20c2d19f08a5e8ed626ab05426c6ab52f100a109.tar.lz nixos_home-20c2d19f08a5e8ed626ab05426c6ab52f100a109.tar.xz nixos_home-20c2d19f08a5e8ed626ab05426c6ab52f100a109.tar.zst nixos_home-20c2d19f08a5e8ed626ab05426c6ab52f100a109.zip |
Hide screen border of drop down open file dialogs
Diffstat (limited to 'gui')
-rw-r--r-- | gui/conf/xmonad.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index 9c65436..3b0d7be 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -180,8 +180,8 @@ customEventHook = do fullscreenEventHook customManageHook host = composeOne - [ hasRole "GtkFileChooserDialog" -?> doRectFloat dropDown - , isParaviewDialog -?> doRectFloat dropDown + [ hasRole "GtkFileChooserDialog" -?> doRectFloat $ hideScreenBorder host dropDown + , isParaviewDialog -?> doRectFloat $ hideScreenBorder host dropDown , isTelegramMediaViewer -?> doFullFloat , isDialog -?> doCenterFloat , transience |