Skip to content

Instantly share code, notes, and snippets.

View luxus's full-sized avatar

luxus luxus

  • Infoguard AG
  • Switzerland
  • 09:05 (UTC +02:00)
  • X @luxus
View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Kai Löhnert",
"label": "Senior IT System Engineer | Airlock IAM | Cyber Security | Human focus | 12y  | Teamplayer | Coffee Lover",
"image": "",
"email": "kl82@me.com",
"phone": "775299372",
"url": "https://luxus.ai",
"summary": "Experienced customer service professional with a demonstrated history of working on Mac/iOS-based software. Skilled in windows, linux and Apple systems administration and repair as well as technical support and general troubleshooting knowledge. Strong support professional with a big customer focus.\nExpirence as L2/3 Support \nAt the moment I focus on cyber security and gain a lot of knowledge in this field the last years",
-- AstroNvim Configuration Table
-- All configuration changes should go inside of the table below
-- You can think of a Lua "table" as a dictionary like data structure the
-- normal format is "key = value". These also handle array like data structures
-- where a value with no key simply has an implicit numeric key
local config = {
-- Configure AstroNvim updates
updater = {
@luxus
luxus / init.lua
Created April 17, 2023 04:41
.config/nvim/lua/user/init.lua only added tokyonight
-- AstroNvim Configuration Table
-- All configuration changes should go inside of the table below
-- You can think of a Lua "table" as a dictionary like data structure the
-- normal format is "key = value". These also handle array like data structures
-- where a value with no key simply has an implicit numeric key
local config = {
-- Configure AstroNvim updates
updater = {
local font = {
family = "MonoLisa",
bold = "Medium",
weight = "Regular",
boldItalic = "Medium Italic",
italic = "Regular Italic",
}
return {
exec-once=/nix/store/js3215xajs1m05iq2bgpbjp2phvd9b33-dbus-1.14.0/bin/dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY HYPRLAND_INSTANCE_SIGNATURE XDG_CURRENT_DESKTOP; systemctl --user start hyprland-session.target
monitor=DP-1,2560x1440@60,0x0,1
workspace=DP-1,1
monitor=DP-2,2560x1440@60,2560x0,1
workspace=DP-2,2
general {
main_mod=SUPER
gaps_in=15
gaps_out=20
#!/usr/bin/env bash
# Installs NixOS on an OVH server, wiping the server.
#
# This is for a specific server configuration; adjust where needed.
# Originally written for an OVH STOR-1 server.
#
# Prerequisites:
# * Create a LUKS key file at /root/benacofs-luks-key
# e.g. by copying it up.
@luxus
luxus / yet_another_motion_automation.yaml
Created June 20, 2022 23:42 — forked from networkingcat/yet_another_motion_automation.yaml
Homeassistant blueprint for motion-activated light scene
blueprint:
name: Yet Another Motion Automation
description: >
# YAMA V10
Turn on lights or scenes when motion is detected.
Four different scenes can be defined depending on time of day.
#!/bin/zsh
# {{@@ header() @@}}
# quck fix for tmux detach loosing ssh_socket
if [ ! -S ~/.ssh/ssh_auth_sock ] && [ -S "$SSH_AUTH_SOCK" ]; then
ln -sf $SSH_AUTH_SOCK ~/.ssh/ssh_auth_sock
fi
#
# Startup

Keybase proof

I hereby claim:

  • I am luxus on github.
  • I am luxus (https://keybase.io/luxus) on keybase.
  • I have a public key ASAAQGajd0pt7OXkjijq5IK-758zNr-W-DOQA-rdh7wXnAo

To claim this, I am signing this object:

@luxus
luxus / 24-bit-color.sh
Created April 18, 2020 01:25 — forked from lifepillar/24-bit-color.sh
Test 24 bit colors in terminals
#!/bin/bash
#
# This file echoes a bunch of 24-bit color codes
# to the terminal to demonstrate its functionality.
# The foreground escape sequence is ^[38;2;<r>;<g>;<b>m
# The background escape sequence is ^[48;2;<r>;<g>;<b>m
# <r> <g> <b> range from 0 to 255 inclusive.
# The escape sequence ^[0m returns output to default
setBackgroundColor()