This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mai 08 00:33:30 heimdal bluetoothd[1081145]: bluetoothd[1081145]: Bluetooth daemon 5.86 | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: Bluetooth daemon 5.86 | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: bluetoothd[1081145]: src/main.c:parse_config() parsing /etc/bluetooth/main.conf | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: src/main.c:parse_config() parsing /etc/bluetooth/main.conf | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: bluetoothd[1081145]: src/adapter.c:adapter_init() sending read version command | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: src/adapter.c:adapter_init() sending read version command | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: bluetoothd[1081145]: Starting SDP server | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: bluetoothd[1081145]: src/sdpd-service.c:register_device_id() Adding device id record for 0002:1d6b:0246:0556 | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: bluetoothd[1081145]: src/plugin.c:plugin_init() Loading builtin plugins | |
| mai 08 00:33:30 heimdal bluetoothd[1081145]: bluetoothd[ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| DIR_SOURCE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | |
| #script needs elevated privileges | |
| if [ ${UID} != 0 ];then | |
| err "script should be run as root or sudo" | |
| fi | |
| LANG=C | |
| APP_GITHUB_URL="https://github.com/Wilhelm-af/StarRupture-ModLoader" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| padding_low_limit=256 | |
| padding_high_limit=8192 | |
| padding_setup=2044 | |
| seekpoint_interval_limit=20 | |
| seekpoint_setup=6s | |
| for album in ./*/*/ | |
| do | |
| before_clean_disk_usage=$(du --max-depth=0 "$album" | awk '{print $1}') |