home: remove gnome-calculator

This commit is contained in:
Dmitriy Pleshevskiy 2022-09-01 21:49:18 +03:00
parent 9812100d5f
commit 46e5c96b62
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215
2 changed files with 6 additions and 8 deletions

View file

@ -23,7 +23,6 @@ in
nheko nheko
docker-compose docker-compose
libreoffice libreoffice
gnome.gnome-calculator
asciinema # record the terminal asciinema # record the terminal
neofetch # command-line system information neofetch # command-line system information

View file

@ -236,16 +236,15 @@ myManageHook = manageApps
isPopup = isRole =? "pop-up" isPopup = isRole =? "pop-up"
manageApps = manageApps =
composeOne composeOne
[ resource =? "desktop_window" -?> doIgnore, [ -- apps
resource =? "kdesktop" -?> doIgnore,
-- general
isPopup -?> doCenterFloat,
isDialog -?> doCenterFloat,
-- apps
className =? "Gimp" -?> doFloat, className =? "Gimp" -?> doFloat,
className =? "nheko" -?> doShift comWs, className =? "nheko" -?> doShift comWs,
className =? "KotatogramDesktop" -?> doShift comWs, className =? "KotatogramDesktop" -?> doShift comWs,
className =? "gnome-calculator" -?> doCenterFloat -- general
resource =? "desktop_window" -?> doIgnore,
resource =? "kdesktop" -?> doIgnore,
isPopup -?> doCenterFloat,
isDialog -?> doCenterFloat
] ]
------------------------------------------------------------------------ ------------------------------------------------------------------------