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/bash | |
SPEED_DEFAULT=1000 | |
SPEED_OTHER=400 | |
if ! [ -x "$(command -v ratbagctl)" ]; then | |
echo 'Error: ratbag is not installed.' >&2 | |
echo 'Install with "pacman -S libratbag" or "apt-get install ratbagd"' | |
exit 1 | |
fi |
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
# Fix no keyboard input in Intellij https://youtrack.jetbrains.com/issue/IDEA-78860 | |
export IBUS_ENABLE_SYNC_MODE=1 |
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
#!/usr/bin/env ruby | |
require 'faraday' | |
require 'json' | |
require 'gitlab' | |
module Redmine | |
Host = nil | |
APIKey = nil |