Check out WSATools by Simone Franco: https://www.microsoft.com/store/apps/9N4P75DXL6FG
- Launch Windows Subsystem for Android.
#include <unistd.h> | |
#include <string> | |
#include <cinttypes> | |
#include <android/log.h> | |
#include <sys/system_properties.h> | |
using namespace std; | |
extern "C" { |
#!/bin/bash | |
# script name: install_waydroid.sh | |
# description: Install Waydroid on unsupported Debian based distro caused by incompatible python3-gbinder package | |
# related to : https://github.com/waydroid/waydroid/issues/214#issuecomment-1120926304 | |
# author : Wachid Adi Nugroho <wachidadinugroho.maya@gmail.com> | |
# date : 2022-07-07 | |
export distro=$(grep -oP '(?<=^NAME=).*' /etc/os-release) | |
if [[ -f /usr/bin/dpkg ]]; |
Check out WSATools by Simone Franco: https://www.microsoft.com/store/apps/9N4P75DXL6FG
# Check these threads before proceeding: | |
# https://github.com/microsoft/WSL/discussions/5857 | |
# https://github.com/microsoft/WSL/issues/5821 | |
if (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] 'Administrator')) { | |
$CmdLine = "-File `"" + $MyInvocation.MyCommand.Path + "`" " + $MyInvocation.UnboundArguments | |
Start-Process -FilePath PowerShell.exe -Verb Runas -ArgumentList $CmdLine | |
Exit | |
} | |
# Restart the Host Network Service | |
Restart-Service -Force -Name hns |
Implementation notes regarding ADB. | |
I. General Overview: | |
The Android Debug Bridge (ADB) is used to: | |
- keep track of all Android devices and emulators instances | |
connected to or running on a given host developer machine | |
- implement various control commands (e.g. "adb shell", "adb pull", etc.) |
The android emulator doesn't support all usb devices because they are disabled in the kernel. So we need to build it with another configuration. My goal was to build the same version as it was before, but with just configuration modifications.
Start the emulator without modifications, go into
Configuration > System > About emulated device > Android version
Hello, I'm a Debian user and I installed the Kdenlive on my machine but there is not dark theme option | |
because of the Gnome DE, so to fix this, simply run the following command on your terminal | |
sudo apt install kde-style-breeze | |
it will install kde-style-breeze libkf5style5 (208 kB) | |
start kdenlive go to Settings > Themes > Breeze Dark | |
enjoy your Dark Kdenlive. |
Install the following packages
xserver-xorg-core
(server)xserver-xorg-video-XXX
(video driver, XXX depends on your hardware)xserver-xorg-input-XXX
(input device driver, XXX depends on your hardware. evdev
works well for most cases)x11-xserver-utils
(xmodmap
, xrandr
)x11-xkb-utils
(setxkbmap
)x11-utils
(xdpyinfo
, xev
, xkill
, xprop
, xwininfo
)package se.emilsjolander.stickylistheaders.sample; | |
import android.annotation.TargetApi; | |
import android.content.res.Configuration; | |
import android.os.Build; | |
import android.os.Bundle; | |
import android.os.Handler; | |
import android.support.v4.app.ActionBarDrawerToggle; | |
import android.support.v4.widget.DrawerLayout; | |
import android.support.v4.widget.SwipeRefreshLayout; |