This file contains 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/bash | |
# SPDX-License-Identifier: MIT | |
# Steps: | |
# 1) Make sure bash is available | |
# 2) Create udev rule | |
# - path to new udev rule: /etc/udev/rules.d/50-x-resize.rules | |
# - udev rule content: | |
# ACTION=="change", KERNEL=="card[0-9]*", SUBSYSTEM=="drm", RUN+="/usr/local/bin/x-resize" | |
# 3) Create /var/log/autores directory | |
# 4) Create script /usr/local/bin/x-resize (this file) and make executable |
This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from __future__ import absolute_import | |
from __future__ import division | |
from __future__ import print_function | |
from __future__ import unicode_literals | |
import base64 | |
import os |
This file contains 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
FROM debian:unstable | |
LABEL maintainer="Ingo Heimbach <i.heimbach@fz-juelich.de>" | |
RUN apt-get update && \ | |
apt-get install --no-install-recommends -y automake \ | |
build-essential \ | |
ca-certificates \ | |
cmake \ | |
curl \ | |
git \ |
This file contains 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
set smoothscroll | |
map w :new<Space> | |
map W :new @% | |
map s createHintWindow | |
map R reloadTabUncached | |
map D :tabdetach<CR> | |
map yt :duplicate<CR> | |
let blacklists = ["https://iffvcc.iff.kfa-juelich.de/ui/webconsole.html*"] |
This file contains 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
#!/usr/bin/env python3 | |
import errno | |
import locale | |
import os | |
import subprocess | |
import sys | |
from math import ceil | |
from typing import Dict, IO, Iterator, List, Optional, Tuple # noqa: F401 # pylint: disable=unused-import |