Documenting XRDP setup which worked for me on Ubuntu Mate 20.04.
Some parts are taken from: http://c-nergy.be/blog/?p=14093.
sudo apt install xrdp
Documenting XRDP setup which worked for me on Ubuntu Mate 20.04.
Some parts are taken from: http://c-nergy.be/blog/?p=14093.
sudo apt install xrdp
| This builds off the excellent work of @lmarkus. | |
| The scripts below can be used in conjunction with the Neutral Face Emoji Tools Google Chrome extension to (bulk!) | |
| export emojis from one Slack team and import into another team: | |
| https://chrome.google.com/webstore/detail/neutral-face-emoji-tools/anchoacphlfbdomdlomnbbfhcmcdmjej | |
| Original work here: https://gist.github.com/lmarkus/8722f56baf8c47045621 | |
| Steps: | |
| 1) Run js in dev tools |
| <template> | |
| <file-input v-model="filename" @formData="formData"> | |
| <v-btn @click.native="uploadFiles"> | |
| </template> | |
| <script> | |
| import fileInput from './file-input.vue' | |
| export default{ | |
| components:{fileInput} |
| /* | |
| Theme Name: Twenty Fifteen Right | |
| Theme URI: http://twentyfifteen-right.local/ | |
| Description: Twenty Fifteen Child Theme | |
| Author: Vladimir Ponomar | |
| Author URI: http://ponomar.pp.ua | |
| Template: twentyfifteen | |
| Version: 1.0.0 | |
| License: GNU General Public License v2 or later | |
| License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| function heightDetect() { | |
| $(".main_head") .css('height', $(window).height()); | |
| }; | |
| heightDetect(); | |
| $(window).resize(function() { | |
| heightDetect(); | |
| }); | |
| #loader { | |
| background: none repeat scroll 0 0 #ffffff; | |
| bottom: 0; | |
| height: 100%; | |
| left: 0; | |
| position: fixed; | |
| right: 0; | |
| top: 0; | |
| width: 100%; | |
| z-index: 9999; |