Skip to content

Instantly share code, notes, and snippets.

× ulauncher.service
Loaded: loaded (/etc/systemd/user/ulauncher.service; enabled; preset: enabled)
Active: failed (Result: exit-code) since Thu 2024-03-21 09:38:44 CET; 3min 37s ago
Duration: 565ms
Process: 1741 ExecStart=/nix/store/2j9yhpp0ffp2anj87iipqrhpggmypjmm-unit-script-ulauncher-start/bin/ulauncher-start (code=exited, status=139)
Main PID: 1741 (code=exited, status=139)
CPU: 308ms
mar 21 09:38:43 nozenseZlaptop systemd[1727]: Started ulauncher.service.
mar 21 09:38:44 nozenseZlaptop .ulauncher-wrap[1742]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
@nozense
nozense / Dice.py
Last active August 15, 2022 13:48
from sys import argv
import random
script, nrDice, diff, itt = argv
nrDice = int(nrDice)
diff = int(diff)
itt = int(itt)
diceMin = 1
diceMax = 10