mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
Compare commits
No commits in common. "ae721808c046ae976f0246d19e688dcbb1222595" and "b8f78260b3743f7636f082021959d60015944fa4" have entirely different histories.
ae721808c0
...
b8f78260b3
5 changed files with 11 additions and 33 deletions
|
|
@ -78,8 +78,6 @@ config =
|
||||||
, "--target", "2025-11-29=à deux"
|
, "--target", "2025-11-29=à deux"
|
||||||
, "--target", "2025-12-16=dragon book"
|
, "--target", "2025-12-16=dragon book"
|
||||||
, "--target", "2025-12-30=seule"
|
, "--target", "2025-12-30=seule"
|
||||||
, "--target", "2025-12-15=campus baguette"
|
|
||||||
, "--target", "2026-02-22=dernier appel"
|
|
||||||
]
|
]
|
||||||
""
|
""
|
||||||
(60 &minute)
|
(60 &minute)
|
||||||
|
|
|
||||||
|
|
@ -85,9 +85,6 @@ isDiscord =
|
||||||
isEvolution :: Query Bool
|
isEvolution :: Query Bool
|
||||||
isEvolution = className ~? "gnome.Evolution"
|
isEvolution = className ~? "gnome.Evolution"
|
||||||
|
|
||||||
isEvolutionComposer :: Query Bool
|
|
||||||
isEvolutionComposer = isEvolution <&&> title =? "Compose Message"
|
|
||||||
|
|
||||||
isFirefox :: Query Bool
|
isFirefox :: Query Bool
|
||||||
isFirefox = className =? "firefox"
|
isFirefox = className =? "firefox"
|
||||||
|
|
||||||
|
|
@ -125,11 +122,6 @@ isMinder = className =? "Minder" <&&> (not <$> title ~? "Pick a Color")
|
||||||
isKitty :: Query Bool
|
isKitty :: Query Bool
|
||||||
isKitty = className =? "kitty"
|
isKitty = className =? "kitty"
|
||||||
|
|
||||||
isUtility :: Query Bool
|
|
||||||
isUtility =
|
|
||||||
-- Useful to ignore stuff like digikam pop ups
|
|
||||||
isInProperty "_NET_WM_WINDOW_TYPE" "_NET_WM_WINDOW_TYPE_UTILITY"
|
|
||||||
|
|
||||||
myActivateHook :: ManageHook
|
myActivateHook :: ManageHook
|
||||||
myActivateHook =
|
myActivateHook =
|
||||||
-- Ignore activate request
|
-- Ignore activate request
|
||||||
|
|
@ -144,21 +136,17 @@ myActivateHook =
|
||||||
|
|
||||||
myManageHook :: ManageHook
|
myManageHook :: ManageHook
|
||||||
myManageHook =
|
myManageHook =
|
||||||
composeAll
|
composeOne
|
||||||
[ isNautilusPreviewer --> customFloating centeredFloat
|
[ isNautilusPreviewer -?> customFloating centeredFloat
|
||||||
, isFeh --> doF copyToAll <> customFloating buttomRightFloat
|
, isFeh -?> doF copyToAll <> customFloating buttomRightFloat
|
||||||
, isMinder --> customFloating centeredFloat
|
, isMinder -?> customFloating centeredFloat
|
||||||
, isFirefoxPip --> doF copyToAll <> customFloating buttomRightFloat
|
, isFirefoxPip -?> doF copyToAll <> customFloating buttomRightFloat
|
||||||
, isDiscord --> doShift chatWS
|
, isDiscord -?> doShift chatWS
|
||||||
, isEvolution --> doShift chatWS
|
, isEvolution -?> doShift chatWS
|
||||||
, isSignal --> doShift chatWS
|
, isSignal -?> doShift chatWS
|
||||||
, isFirefox --> insertPosition Master Newer
|
, isFirefox -?> insertPosition Master Newer
|
||||||
, isKitty --> insertPosition Below Newer
|
, isKitty -?> insertPosition Below Newer
|
||||||
, isNautilus <||> isSioyek --> insertPosition End Older
|
, isNautilus <||> isSioyek -?> insertPosition End Older
|
||||||
|
|
||||||
, isUtility --> doIgnore
|
|
||||||
, isDialog --> doF copyToAll <> customFloating centeredFloat
|
|
||||||
, isEvolutionComposer --> customFloating centeredFloat
|
|
||||||
]
|
]
|
||||||
<> namedScratchpadManageHook myScratchpads
|
<> namedScratchpadManageHook myScratchpads
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -96,10 +96,6 @@ in
|
||||||
XEN_PVHVM = lib.mkForce unset;
|
XEN_PVHVM = lib.mkForce unset;
|
||||||
XEN_SAVE_RESTORE = lib.mkForce unset;
|
XEN_SAVE_RESTORE = lib.mkForce unset;
|
||||||
XEN_SYS_HYPERVISOR = lib.mkForce unset;
|
XEN_SYS_HYPERVISOR = lib.mkForce unset;
|
||||||
|
|
||||||
# Device Driver
|
|
||||||
MACINTOSH_DRIVERS = no; # hmm
|
|
||||||
SURFACE_PLATFORMS = no; # ew
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -89,10 +89,6 @@ in
|
||||||
ssid = "R1108";
|
ssid = "R1108";
|
||||||
randomizeMac = true;
|
randomizeMac = true;
|
||||||
}
|
}
|
||||||
{
|
|
||||||
ssid = "NTUH_guest";
|
|
||||||
randomizeMac = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
{ ssid = "_SNCF_WIFI_INOUI"; }
|
{ ssid = "_SNCF_WIFI_INOUI"; }
|
||||||
{ ssid = "_WIFI_LYRIA"; }
|
{ ssid = "_WIFI_LYRIA"; }
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue