Skip to content

Instantly share code, notes, and snippets.

@AndroPlus-org
AndroPlus-org / gist:8621dad2feda14b5ecc205a6a71318f4
Last active December 3, 2023 05:28
vivo frame interpolation
1. パッケージ名でPIDを探す
gpid=`pidof -s com.miHoYo.GenshinImpact`
2. フレーム補間をPID指定で有効化
vivo X100の場合45FPSを90FPSにフレーム補間
settings put system gamecube_frame_interpolation 1:3:$gpid:45:90
iQOO 12の場合48FPSを144FPSにフレーム補間
settings put system gamecube_frame_interpolation 1:3:$gpid:48:144
@AndroPlus-org
AndroPlus-org / google-lang.user.js
Last active February 15, 2024 13:52
Google検索に日本語のみ、英語のみ表示するボタンを追加するユーザースクリプト
// ==UserScript==
// @name Google検索 日本語のみ・英語のみボタン
// @namespace http://0-oo.net/
// @description Google検索に「日本語のみ」「英語のみ」ボタンを追加する
// @homepage http://0-oo.net/log/category/greasemonkey/
// @version 1.1
// @include http*://www.google.tld/search*
// @include http*://www.google.tld/webhp*
// @include http*://www.google.tld/#*
// @include http*://www.google.tld/
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="actionbar_button_up_description">Back</string>
<string name="afternoon">Afternoon</string>
<string name="ai_assistant">AI Call Assistant</string>
<string name="ai_assistant_not_installed">Install AI Call Assistant first</string>
<string name="ai_dial">AI call</string>
<string name="ai_mode_auto">Auto</string>
<string name="ai_mode_manual">Manually</string>
<string name="ai_mode_subtitles">Subtitles</string>
@AndroPlus-org
AndroPlus-org / userdata以外すべての場合
Last active April 30, 2024 11:04
Androidのイメージバックアップ (パスやファイル名は端末によって変わるため、適宜変更してください)
# 1. root権限で実行するためsuに
su
# 2. 各イメージがあるパスへ移動する (/dev/block/bootdevice/by-name/ の場合もあります)
cd /dev/block/by-name/
# 3. バックアップ保存用ディレクトリを作成
mkdir /sdcard/backup_img
# 4. cacheとuserdata以外すべてを/sdcard/backup_imgへバックアップする