2019-09-18 02:23:45 +04:00
|
|
|
# TODO
|
|
|
|
|
2020-08-11 02:38:02 +04:00
|
|
|
* config qbittorrent
|
2020-08-15 19:36:16 +04:00
|
|
|
* telegram theme
|
2022-11-21 02:53:20 +03:00
|
|
|
* use theme engine from https://github.com/SenchoPens/senixos
|
2022-12-07 22:05:00 +03:00
|
|
|
* update waybar
|
2023-01-26 00:32:35 +03:00
|
|
|
* FIX Seadrive
|
2023-02-14 07:04:20 +03:00
|
|
|
* Firejail all the things
|
2022-12-07 22:05:00 +03:00
|
|
|
|
|
|
|
## Tips:
|
|
|
|
|
|
|
|
* Copy sparse files
|
|
|
|
|
|
|
|
```bash
|
|
|
|
dd if=srcFile of=dstFile iflag=direct oflag=direct bs=64K conv=sparse
|
|
|
|
```
|
|
|
|
|
|
|
|
* swap on zfs zvol (on encrypted dataset only!)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
zfs create -V 2G -b $(getconf PAGESIZE) -o logbias=throughput -o sync=always -o primarycache=metadata -o secondarycache=none -o com.sun:auto-snapshot=false -o compression=zle zroot/enc/swap
|
|
|
|
```
|