Notepad++ with Material Black Theme
Go to %AppData%\Notepad++\themes Place Material-Black.xml inside that folder and restart Notepad++ Dracula will be available in Settings > Style Configurator Download file Material-Black.xml
Go to %AppData%\Notepad++\themes Place Material-Black.xml inside that folder and restart Notepad++ Dracula will be available in Settings > Style Configurator Download file Material-Black.xml
Command to list apks on device: adb shell pm list packages Command to remove apk from device: adb shell pm uninstall -k --user 0 XX where XX is the package…
Run it in terminal or powershell: ie4uinit.exe -ClearIconCache And then restart explorer.exe After all you should see updated icon in taskbar.
du -xh / |grep '^\S*\+G'|sort -rn More info here.
ffmpeg -i input.mkv -c:v libx265 -crf 23 output.mkv If selecting video and audio is important for us, then we call first the code below to find out on what…
In the terminal type: sudo nano /etc/wpa_supplicant/wpa_supplicant.conf Delete the relevant wifi network block (including the ‘network=’ and opening/closing braces.
for %%f in (*.m4a) do ( ffmpeg -i "%%f" -acodec libmp3lame -ab 320k "%%f.mp3" )
for %%f in (*.m4a) do ( ffmpeg -loop 1 -i bear.jpg -i "%%f" -c:a aac -c:v libx264 -crf 0 -preset veryfast -shortest "video-%%f.mp4" )
Enable rc.local if missing sudo touch /etc/rc.local sudo chmod +x /etc/rc.local sudo systemctl start rc-local sudo systemctl status rc-local Insert Your script command into rc.local, my was like below. You can delete sample…
There are 6 simple steps for rooting Android 7.1.1 for nexus 6: 1 adb reboot bootloader 2 fastboot oem unlock 3 fastboot flash recovery twrp-3.2.1-0-shamu.img https://dl.twrp.me/shamu/twrp-3.2.1-0-shamu.img.html 4 go to recovery…