sudo nano /usr/share/themes/Ambiance/metacity-1/metacity-theme-1.xml
change following values to 5 or another value you prefer
"<distance name="left_width" value="1"/>"
""
[Unit] | |
Description=XMRig Daemon | |
After=network.target | |
[Service] | |
Type=forking | |
GuessMainPID=no | |
ExecStart=/usr/local/bin/xmrig -c /home/miner/config/config.json -l /home/miner/xmrig.log -B | |
Restart=always | |
User=miner |
sudo nano /usr/share/themes/Ambiance/metacity-1/metacity-theme-1.xml
change following values to 5 or another value you prefer
"<distance name="left_width" value="1"/>"
""
sudo add-apt-repository ppa:webupd8team/java
sudo apt update
sudo apt install -y oracle-java8-installer
sudo apt install -y oracle-java8-set-default
javac -version
@Echo off | |
set "inkscapePath=C:\Program Files\Inkscape\inkscape.exe" | |
set /a count=0 | |
set validInput1=svg | |
set validInput2=pdf | |
set validInput3=eps | |
set validOutput1=eps | |
set validOutput2=pdf | |
set validOutput3=png |
git submodule add https://gist.github.com/0965be641547b34618926d404773cd94.git InkscapeConverter
git submodule init
git submodule update
If you run git submodule update --remote, Git will go into your submodules and fetch and update for you.
git submodule update --remote InkscapeConverter
First install Java JDK 8:
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
Follow this link to use the jdk 8 for Netbeans:
On target-plattofrm (raspberry pi) (source)
sudo apt-get install html-xml-utils curl
mkdir -p bcm2835 && (wget -qO - `curl -sL http://www.airspayce.com/mikem/bcm2835 | hxnormalize -x -e | hxselect -s '\n' -c "div.textblock>p:nth-child(4)>a:nth-child(1)"` | tar xz --strip-components=1 -C bcm2835 )
cd bcm2835
./configure
make
sudo make install
// Lizenz: AGES Dashboard COVID19 AT | |
// Use 3-digit GKZ (third row of https://covid19-dashboard.ages.at/data/CovidFaelle_Timeline_GKZ.csv). | |
// Widget Parameter: "204,KFL;312;706" for Klagenfurt Land (shown as KFL), Korneuburg and Landeck | |
// | |
// Based on the german variant: | |
// - kevinkub https://gist.github.com/kevinkub/46caebfebc7e26be63403a7f0587f664 | |
// - Baumchen https://gist.github.com/Baumchen/6d91df0a4c76c45b15576db0632e4329 | |
// | |
// No guarantee on correctness and completeness of the information provided. | |
const urlTimelineGkz = "https://covid19-dashboard.ages.at/data/CovidFaelle_Timeline_GKZ.csv" |
set(CMAKE_TOOLCHAIN_FILE "${CMAKE_CURRENT_SOURCE_DIR}/ti-cgt-clang-toolchain.cmake") | |
set(PROJECT_NAME clang-test.elf) | |
project(${PROJECT_NAME}) | |
set(SYS_CONFIG ${MCU_PLUS_SDK_PATH}/examples/empty/am64x-evm/r5fss0-0_freertos/example.syscfg) | |
set(LINKER_FILE ${MCU_PLUS_SDK_PATH}/examples/empty/am64x-evm/r5fss0-0_freertos/ti-arm-clang/linker.cmd) | |
cmake_minimum_required (VERSION 3.18) |