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
#!/usr/bin/bash | |
sqlite3 ~/.kodi/userdata/Database/MyVideos116.db "SELECT idMovie from movie_view m WHERE NOT EXISTS(SELECT 1 from actor_link where medi | |
a_type==\"movie\" and media_id==m.idMovie );" | while read -r line; do echo "$line"; curl -X POST -H "Accept: application/json" -H "Con | |
tent-Type: application/json" -d '{"jsonrpc":"2.0","method":"VideoLibrary.RefreshMovie","params":{"movieid":'$line',"ignorenfo":true},"i | |
d":1}' -u kodi:kodi http://localhost:8080/jsonrpc; done |
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
import xbmc | |
xbmc.executebuiltin('exportlibrary(video,true,true,true,false)') |
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
i am doing something | |
found graphic capable queue | |
1 | |
queue 0x55d1622e3e00 | |
queue 0x55d1622e3e00 | |
queue 0x55d1622e3e00 | |
format 50 | |
format 50 | |
device 0x55d1623b9710 | |
format 50 |
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
========== | |
VULKANINFO | |
========== | |
Vulkan Instance Version: 1.1.121 | |
Instance Extensions: | |
==================== |
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
[ 0.000965] Config <Info> core/settings.cpp:LogSettings:74: Citra Configuration: | |
[ 0.000981] Config <Info> core/settings.cpp:LogSetting:70: Core_UseCpuJit: true | |
[ 0.000990] Config <Info> core/settings.cpp:LogSetting:70: Renderer_UseGLES: false | |
[ 0.001001] Config <Info> core/settings.cpp:LogSetting:70: Renderer_UseHwRenderer: true | |
[ 0.001012] Config <Info> core/settings.cpp:LogSetting:70: Renderer_UseHwShader: true | |
[ 0.001023] Config <Info> core/settings.cpp:LogSetting:70: Renderer_ShadersAccurateMul: false | |
[ 0.001033] Config <Info> core/settings.cpp:LogSetting:70: Renderer_UseShaderJit: true | |
[ 0.001043] Config <Info> core/settings.cpp:LogSetting:70: Renderer_UseResolutionFactor: 5 | |
[ 0.001054] Config <Info> core/settings.cpp:LogSetting:70: Renderer_UseFrameLimit: true | |
[ 0.001064] Config <Info> core/settings.cpp:LogSetting:70: Renderer_FrameLimit: 100 |
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/sh | |
localPackager=`grep "PACKAGER=" /etc/makepkg.conf | sed -n 's/PACKAGER=//p' | tr '[:upper:]' '[:lower:]'` | |
localPackager="${localPackager%\"}" | |
localPackager="${localPackager#\"}" | |
echo "Local Packager: $localPackager" | |
if [ "${localPackager:0:1}" = "#" ] | |
then | |
localPackager="unknown packager" |
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
Section "Monitor" | |
Identifier "TV" | |
DisplaySize 1105 616 | |
Option "DPMS" "false" | |
EndSection | |
Section "ServerLayout" | |
Identifier "ServerLayout0" | |
Option "StandbyTime" "0" | |
Option "SuspendTime" "0" |
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
Section "Screen" | |
Identifier "Screen" | |
Device "amdgpu" | |
Monitor "TV" | |
EndSection |
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
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 16384 x 16384 | |
DisplayPort-0 disconnected (normal left inverted right x axis y axis) | |
DisplayPort-1 disconnected (normal left inverted right x axis y axis) | |
HDMI-A-0 disconnected (normal left inverted right x axis y axis) | |
HDMI-A-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 698mm x 392mm | |
1920x1080 60.00*+ 59.94 24.00 23.98 | |
1680x1050 60.00 | |
2880x480 60.00 59.94 | |
1280x1024 60.00 | |
1440x900 60.00 |
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
diff --git a/Makefile b/Makefile | |
index 8e38d9a..2db4c82 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -8,13 +8,12 @@ CFLAGS+=-O2 -Wall -g | |
all: make-bcache probe-bcache bcache-super-show bcache-register | |
install: make-bcache probe-bcache bcache-super-show | |
- $(INSTALL) -m0755 make-bcache bcache-super-show $(DESTDIR)${PREFIX}/sbin/ | |
- $(INSTALL) -m0755 probe-bcache bcache-register $(DESTDIR)$(UDEVLIBDIR)/ |