First set up your keyboard layout. For example, in Spanish:
# loadkeys es
For a list of all acceptable keymaps:
# localectl list-keymaps
GloriousEgroll actually added a fix for the Kernel issue for this game but CEG still makes it impossible to launch through Proton. | |
Guide to playing Black Ops II on Linux: | |
Make sure you have Vulkan libraries, your graphics driver and Lutris installed. GloriousEgroll's "Get out of Wine dependency hell" could help. | |
Install the runner "Steam Wine" through Lutris. Set the Wine version to newest you can find on Lutris, anything before 5.6 won't work. | |
Set these as Environment variables under System Options of Wine Steam. | |
DXVK_STATE_CACHE = 1 | |
DXVK_STATE_CACHE_PATH = /home/(your username)/.local/share/lutris/runners/winesteam/prefix64/ |
1,2.16.106.51-2.16.106.51 | |
2,2.16.106.91-2.16.106.91 | |
3,111.221.29.177-111.221.29.177 | |
4,111.221.29.253-111.221.29.253 | |
5,131.253.40.37-131.253.40.37 | |
6,134.170.30.202-134.170.30.202 | |
7,134.170.115.60-134.170.115.60 | |
8,134.170.165.248-134.170.165.248 | |
9,134.170.165.253-134.170.165.253 | |
10,134.170.185.70-134.170.185.70 |
Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | |
This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full. | |
usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}… | |
Getting help: | |
-h — print basic options | |
-h long — print more options | |
-h full — print all options (including all format and codec specific options, very long) |
gsettings set org.cinnamon.desktop.privacy remember-recent-files false | |
gsettings set org.cinnamon.theme name "Mint-Y-Dark" | |
gsettings set org.cinnamon.desktop.interface gtk-theme "Mint-Y-Dark" | |
gsettings set org.cinnamon.desktop.wm.preferences theme "Mint-Y-Dark" | |
gsettings set org.cinnamon.desktop.interface cursor-blink false | |
gsettings set org.gnome.system.proxy autoconfig-url "http://mediahint.com/default.pac" | |
gsettings set org.gnome.system.proxy mode auto | |
gsettings set org.cinnamon enabled-applets "['panel1:left:0:[email protected]:0', 'panel1:left:2:[email protected]:2', 'panel1:left:3:[email protected]:3', 'panel1:right:0:[email protected]:4', 'panel1:right:1:[email protected]:5', 'panel1:right:2:[email protected]:6', 'panel1:right:3:[email protected]:7', 'panel1:right:11:[email protected]:1', 'panel1:right:5:[email protected]:9', 'panel1:right:6:[email protected]:10', 'panel1:right:7:[email protected]:11', 'panel1:right:8:[email protected]:12', ' |
It's possible to use create an MCP installation for versions of Minecraft where there hasn't been a full MCP release. It takes a little bit of manual setup, but the end result is highly useful.
Download and extract the most recent MCP build from http://www.modcoderpack.com/. (Currently, the latest build is http://www.modcoderpack.com/files/mcp940.zip)
Edit version.cfg
in the conf
folder, and change ClientVersion
and ServerVersion
to the version you want (for instance, 1.12.2).
Download the SRG zip for the version you want; these can generally be found at http://mcpbot.bspk.rs/mcp/<version>/mcp-<version>-srg.zip
(for example, http://mcpbot.bspk.rs/mcp/1.11.2/mcp-1.11.2-srg.zip) or at http://files.minecraftforge.net/maven/de/oceanlabs/mcp/mcp/<version>/mcp-<version>-srg.zip
(for example, http://files.minecraftforge.net/maven/de/oceanlabs/mcp/mcp/1.12.2/mcp-1.12.2-srg.zip). (For 1.12.1 and 1.12.2, only the minecraftforge link works)
Extract that zip into the MCP conf
folder, over
#!/bin/bash | |
{ | |
echo $(date) | |
echo ">>>Disk found" | |
echo ">>>Setting the title..." | |
title=$(makemkvcon -r info) | |
title=`echo "$title" | grep "DRV:0\+"` | |
title=${title:53} |
/** | |
* Author: Jason White | |
* | |
* Description: | |
* Reads joystick/gamepad events and displays them. | |
* | |
* Compile: | |
* gcc joystick.c -o joystick | |
* | |
* Run: |