Update of CLionActivator
Added Windows support. You must launch this script as an admin
Download
Category: Notes
CLion Activator v1.1
Script activator for Linux, allows you to extend the trial period of CLion for 30 days
IF YOU HAVE AN OPPORTUNITY, PLEASE BUY CLION
Unlike the previous version, this activator is written in Python and clears all references to the trial license. This activator FULLY renews the license for 30 days.
- Download script
cd <download folder>
python CLionActivator.py
- Enter your current CLion version folder index (usually 0)
- Enjoy!
CLion Activator
Xorg – change display resolution on AMD GPU, Debian
When I tried to create a new mode in Xorg (via xrandr --newmode
), I get the following error:Failed to get size of gamma for output default
The solution turned out to be simple: I just had to install firmware-linux-nonfree
So, here is the complete resolution change process:
cvt <width> <height> <refresh rate>
,output may be something like this:# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode <OUTPUT> 1920x1080_60.00
,OUTPUT
can be extractedfrom xrandr
output etc - To apply new mode that you created execute
xrandr --output <OUTPUT> --mode 1920x1080_60.00
After that, the screen resolution will change to the one you specified.
Firefox useful settings
You can found hidden config on about:config
layers.acceleration.force-enabled
set totrue
, if your screen flickering when you scrolling or watching videoslayout.css.devPixelsPerPx
can control browser scale with this param. Very useful for users which have HiDPI screens!
Update 19.06.20/20.06.20:
browser.display.focus_ring_width
set to0
to remove ugly dotted borders around the linksgfx.webrender.all
set totrue
to enable WebRenderbrowser.tabs.tabMinWidth
reduce to fit more tabs (like in Chromium)