quakeタグが使えない,といっても割とどうとでもなります。 現に,
KAG3 for 吉里吉里Z や, 鱧入りKAG3 for 吉里吉里Z
では普通にquakeタグは使えるようになっています。(実際のところ揺らす先を変更しているだけ)
| local utils = require 'mp.utils' | |
| local start | |
| mp.add_key_binding('Ctrl+e', 'generate-edl', function () | |
| if start == nil then | |
| start = mp.get_property_native('time-pos') | |
| mp.osd_message('Saved start') | |
| return | |
| end |
| // Copyright (c) 2021 Advanced Micro Devices, Inc. All rights reserved. | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: | |
| // | |
| // The above copyright notice and this permission notice shall be included in |
| # Name: softdenchi_remove.py | |
| # | |
| # Usage: Drag game.exe onto softdenchi_remove.py. | |
| # This will make a new exe in the same location as game.exe. | |
| # | |
| # Process: SoftDenchi is a DRM that requires you to run its parent program in | |
| # the background before it will run the protected binary. The parent | |
| # service behaves eerily similar to malware in that it is constantly | |
| # running in the background, even when you aren't using applications | |
| # protected by it. The parent service UCManSvc is somewhat intricate |
| diff --git a/config.def.h b/config.def.h | |
| index 546edda..4f3e806 100644 | |
| --- a/config.def.h | |
| +++ b/config.def.h | |
| @@ -82,6 +82,9 @@ char *termname = "st-256color"; | |
| */ | |
| unsigned int tabspaces = 8; | |
| +/* bg opacity */ | |
| +float alpha = 0.8; |
quakeタグが使えない,といっても割とどうとでもなります。 現に,
KAG3 for 吉里吉里Z や, 鱧入りKAG3 for 吉里吉里Z
では普通にquakeタグは使えるようになっています。(実際のところ揺らす先を変更しているだけ)
| # Luke's config for the Zoomer Shell | |
| # Enable colors and change prompt: | |
| autoload -U colors && colors | |
| PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " | |
| # History in cache directory: | |
| HISTSIZE=10000 | |
| SAVEHIST=10000 | |
| HISTFILE=~/.cache/zsh/history |
| <?php | |
| /** | |
| * Automatically alias Laravel Model's to their base classname. | |
| * Ex: "App\Models\User" now can just be accessed by "User" | |
| */ | |
| if (! function_exists('aliasModels')) { | |
| function aliasModels() { | |
| $finder = new \Symfony\Component\Finder\Finder(); | |
| $finder->files()->name('*.php')->in(base_path().'/app'); |
| #!/bin/sh | |
| # This script lists user defined search engines in Chromium. | |
| # It replaces {inputEncoding}, which appears in some search engine definitions, with | |
| # UTF-8, {google:baseURL} with the Google URL, and omits other such tokens. | |
| # Location of Chromium's 'Web Data' SQLite3 file | |
| CHROMIUM_WEB_DATA="$HOME/.config/chromium/Default/Web Data" | |
| # Location to create temporary copy of 'Web Data', since the database is locked while |