Compare commits

...

2 commits

Author SHA1 Message Date
Geoffrey Frogeye a5be7cb695
Enable picom
Should reduce a few of the graphical glitches.
Also can do the "Activate Linux" joke muhahah
2024-12-20 22:50:19 +01:00
Geoffrey Frogeye 12074f6d2e
jlab: Don't push empty commits 2024-12-20 22:49:51 +01:00
2 changed files with 2 additions and 1 deletions
hm
desktop
scripts

View file

@ -65,6 +65,7 @@ in
{
config = lib.mkIf config.xsession.windowManager.i3.enable {
stylix.targets.i3.enable = false;
services.picom.enable = true;
xdg.configFile = {
"rofimoji.rc" = {
text = ''

View file

@ -250,7 +250,7 @@ elif sys.argv[1] == "push":
bookmark = current_bookmark()
if not bookmark:
raise RuntimeError("Couldn't find a current branch")
heads = jj.log("heads(@::)")
heads = jj.log("heads(ancestors(@::) ~ empty())")
if len(heads) != 1:
raise RuntimeError("Multiple heads") # Or none if something goes horribly wrong
head = heads[0]