Using the oxford dictionary
- Productivity
- the rate at which a worker, a company or a country produces goods, and the amount produced, compared with how much time, work and money is needed to produce them
| #!/usr/bin/env bash | |
| # This script will install Cutie or Phosh on a device | |
| # already running Droidian. This is an alternative to | |
| # using one of the Cutie Droidian images that need to | |
| # be flashed. | |
| # Use at your own risk, odds are it will break things. | |
| # Authors: Kabouik (@bouic), Erik (@eriki73) | |
| # https://t.me/CutieShellProject |
| set $cursor_size 54 | |
| ``` | |
| # GTK | |
| # This is the only place where you must set GTK scaling | |
| set $gnome-schema org.gnome.desktop.interface | |
| exec_always { | |
| gsettings set $gnome-schema gtk-theme 'Matcha-dark-sea' | |
| gsettings set $gnome-schema icon-theme 'Numix-Square' | |
| gsettings set org.gnome.desktop.interface text-scaling-factor 2.73 |
| (require 'mu4e) | |
| (require 'mu4e-dashboard) | |
| (setq mu4e-sidebar-frame nil) | |
| (setq mu4e-sidebar-dashboard-file "~/.emacs.d/lisp/dashboard.org") | |
| (defun mu4e-sidebar-create (dashboard-file) | |
| (let ((width (frame-pixel-width)) | |
| (height (frame-pixel-height)) | |
| (frame (make-frame `((parent-frame . ,(window-frame)) |
Recently I had to move my data between two SailfishOS phones.
I don't really like the new Backup application available since 2.0.2, so
I mostly moved things by hand.
This document contains scattered thoughts about this process.
Dumping the image (from recovery)
NOTE: I no longer use VMware products, and on good authority this trick no longer works (see comments below).
Facts: VMware Player on Ubuntu 18.04 LTS with the standard Gnome desktop running an AMD WX-2100 graphics card. Both glxinfo and glxgears show 3d acceleration is enabled and working on the host. In addition to VMware Player, the host is also running the qemu-kvm/libvirtd stack from Ubuntu's official repositories. My use case for 3d accelerated graphics in a Windows guest is to occasionally play a Windows-only game.
Issue: Player barks this warning during installation of... anything.
Solution: This
| # Gmail Example | |
| # mbsyncrc based on | |
| # http://www.ict4g.net/adolfo/notes/2014/12/27/EmacsIMAP.html | |
| # ACCOUNT INFORMATION | |
| IMAPAccount gmail | |
| # Address to connect to | |
| Host imap.gmail.com | |
| User <EMAIL_HERE> | |
| PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.emacs.d/mu4e/.mbsyncpass-<EMAIL_HERE>.gpg" |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # If file exists (likely) copy fragment below into existing script: | |
| # If stdin is a terminal | |
| if [ -t 0 ]; then | |
| # Set GPG_TTY so gpg-agent knows where to prompt. See gpg-agent(1) | |
| export GPG_TTY="$(tty)" | |
| # Set PINENTRY_USER_DATA so pinentry-auto knows to present a text UI. | |
| export PINENTRY_USER_DATA=USE_TTY=1 |