This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Created on Thu Apr 10 15:44:47 2014 | |
@author: Daniel Schreij | |
""" | |
import zmq | |
import pygame | |
from OpenGL.GL import * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
gsettings set org.gnome.desktop.interface scaling-factor 2 | |
xrandr \ | |
--dpi 162 \ | |
--output USB-C-0 --off \ | |
--output HDMI-0 --mode 1920x1200 --scale 2x2 --pos 0x0 --rotate normal \ | |
--output DP-2 --primary --mode 3840x2160 --pos 3840x0 --scale 1.1x1.1 --rotate normal | |
echo "Xft.dpi: 162" | xrdb -merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-combobox | |
v-bind="$attrs" | |
item-text="description" | |
item-value="description" | |
:search-input.sync="query" | |
:loading="loading" | |
:items="results" | |
v-on="$listeners" | |
@input="handleInput" |