MonkderDritte

joined 3 months ago
[–] MonkderDritte@feddit.de 0 points 2 hours ago* (last edited 2 hours ago) (1 children)

Because the MC is a little boy and his plush tiger.

[–] MonkderDritte@feddit.de 1 points 3 hours ago (3 children)

Wrong comic for this topic.

[–] MonkderDritte@feddit.de 1 points 3 hours ago* (last edited 3 hours ago)

Wait, Shizuku is a root management app?

Btw. In F-Droid too. App Manager Shizuku

[–] MonkderDritte@feddit.de 7 points 3 hours ago (2 children)

Only to the flag?

[–] MonkderDritte@feddit.de 5 points 3 hours ago

Of the 30 cases reviewed by Reuters, more than half resulted in an arrest and at least three in criminal convictions.

[–] MonkderDritte@feddit.de 3 points 3 hours ago* (last edited 3 hours ago)

?

You're supposed to close Steam via menu or systray. If you run it in cli, you see that it cleans then a whole bunch up for a few seconds.

[–] MonkderDritte@feddit.de 69 points 4 hours ago (3 children)

SIGTERM is the graceful way tho? It nicely asks programs to please close and cleanup. Unlike SIGKILL, which bombs the shop and creates orphans.

[–] MonkderDritte@feddit.de 3 points 4 hours ago* (last edited 4 hours ago) (1 children)

"Correct" is in languages how the general population uses it.

[–] MonkderDritte@feddit.de 2 points 4 hours ago* (last edited 4 hours ago)

Yes? This wasn't known yet?

[–] MonkderDritte@feddit.de 1 points 7 hours ago (1 children)

Wasn't it something like, KDE was the distro and desktop name but now the desktop is Plasma?

 

cross-posted from: https://feddit.de/post/13720140

For example, there is Material Notes which has a editor toolbar with bold, ~~indented~~, ~~stroke~~, etc. But this is rendered, exported to json or syntax like Markdown. This app too, in which i write this on lemmy, does the same. We have ☐, ☒, •, ‣ in Unicode, 𝗕𝗼𝗹𝗱, 𝑖𝑛𝑑𝑒𝑛𝑡, s̵t̵r̵o̵k̵e̵, so why not use this?

Basically, what i'm looking for is a text editor with editor toolbar/keystrokes for Android or Linux, which adds unicode symbols for rich text. It would make reading plain text notes/todo lists cross-device simpler. Yes, there's UnicodePad and Charmap but that's not the same.

 

cross-posted from: https://feddit.de/post/13720140

For example, there is Material Notes which has a editor toolbar with bold, ~~indented~~, ~~stroke~~, etc. But this is rendered, exported to json or syntax like Markdown. This app too, in which i write this on lemmy, does the same. We have ☐, ☒, •, ‣ in Unicode, 𝗕𝗼𝗹𝗱, 𝑖𝑛𝑑𝑒𝑛𝑡, s̵t̵r̵o̵k̵e̵, so why not use this?

Basically, what i'm looking for is a text editor with editor toolbar/keystrokes for Android or Linux, which adds unicode symbols for rich text. It would make reading plain text notes/todo lists cross-device simpler. Yes, there's UnicodePad and Charmap but that's not the same.

 

For example, there is Material Notes which has a editor toolbar with bold, indented, ~~stroke~~, etc. But this is rendered, exported to json or syntax like Markdown. This app too, in which i write this on lemmy, does the same. We have ☐, ☒, •, ‣ in Unicode, 𝗕𝗼𝗹𝗱, 𝑖𝑛𝑑𝑒𝑛𝑡, s̵t̵r̵o̵k̵e̵, so why not use this?

Basically, what i'm looking for is a text editor with toolbar/keystrokes for Android or Linux, which adds unicode symbols for rich text. It would make reading plain text notes/todo lists cross-device simpler. Yes, there's UnicodePad and Charmap but that's not the same.

edit: something where you mark a word, tap the B in the toolbar or press ctrl+b and it replaces the characters with uc bold characters, no? Tap the list button and it adds uc bullet points, etc...

 

This is bothering me for years now, my backup script always takes everything with it, taking forever to finish.

I initially used the --exclude option, but this is rather restrictive, cluttered the script and still had the excluded directories.
Then i discovered -X/--exclude-from but same result here, weird globbing and still fails.
So i hacked a negative list via fd's --ignore-file and tar -T/--files-from together. But tar still includes files and directories not on the fucking files.tmp.

So i'm not sure if it is a bug in Arch's GNU tar or if it's maybe a parameter in the wrong position, tar can be removed there. This is my current code

# tar -cf - -X "$XDG_CONFIG_HOME"/backup/ignore "$INPUT" -P

fd . -Hi --ignore-file "$XDG_CONFIG_HOME"/backup/ignore "${INPUT}" > "$_tmpfile"
tar -cf - --verbatim-files-from --files-from="$_tmpfile" -P \
	|pv -tapes "$_fssize" \
	|compress >"${OUTPUT}.$_ext"

INPUT is $HOME in this case.

And if anyone has a solution that works on busybox tar as well...

view more: next ›