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
× 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 |
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
# 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. |
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 sys import argv | |
import random | |
script, nrDice, diff, itt = argv | |
nrDice = int(nrDice) | |
diff = int(diff) | |
itt = int(itt) | |
diceMin = 1 | |
diceMax = 10 |