Daniel Dias Rodrigues

Results 64 comments of Daniel Dias Rodrigues

From remastersys script, lines167-172: ```shell if [ "$1" = "dist" ]; then rm -f $WORKDIR/dummysys/etc/X11/xorg.conf rm -f $WORKDIR/dummysys/etc/resolv.conf rm -f $WORKDIR/dummysys/etc/hosts rm -f $WORKDIR/dummysys/etc/hostname fi ``` So yes, you are...

I am out of ideas...

> Should i comment it out or just deleting the lines in script you wrote above? Both have the same effect.

## Please, reopen it This issue is about add variables to change theme and font size in `config.php`, the same way that happens in other settings. PR #1200 just resolve...

It works. But debian package need changes as explained in issue #180 . I love `qapple`...

After last update, got this error when creating DEB package: ```console $ cpack -G deb AppleWin (Branch: master) CPack Error: Could not create CPack generator: deb Generators 7Z = 7-Zip...

Worked now. Tried in a `VM` with `Debian Bookworm 12.8`: ```console $ cd AppleWin $ cmake -DBUILD_SA2=ON -DBUILD_APPLEN=ON -DBUILD_LIBRETO=ON -DBUILD_QAPPLE=ON . $ make $ cpack -G DEB ``` Worked like...

@DrorDvash, you are such a genius!!! This fixed the issue for me. Debian testing / Trixie: `/usr/lib/python3/dist-packages/terminatorlib/plugins/custom_commands.py`: ```python def on_keypress(self, widget, event): # DEBUG: print raw keyval #print(f"Key pressed: keyval={event.keyval},...

Recently Debian updated Terminator and I needed to apply those changes again. So I made a script: ```shell #!/bin/zsh clear file="/usr/lib/python3/dist-packages/terminatorlib/plugins/custom_commands.py" target="def on_keypress(self, widget, event):" echo -e "\e[93mBefore:\e[0m" grep -n...