Skip to content

Instantly share code, notes, and snippets.

00:00:00.000 [INFO] [sway/main.c:338] Sway version 0.3.2-7c75b219 (Nov 30 2023, branch 'master')
00:00:00.000 [INFO] [sway/main.c:339] wlroots version 0.16.2
00:00:00.002 [INFO] [sway/main.c:120] Linux juusto 6.6.3-arch1-1 #1 SMP PREEMPT_DYNAMIC Wed, 29 Nov 2023 00:37:40 +0000 x86_64 GNU/Linux
00:00:00.002 [INFO] [sway/main.c:136] Contents of /etc/lsb-release:
00:00:00.002 [INFO] [sway/main.c:120] DISTRIB_ID="Arch"
00:00:00.002 [INFO] [sway/main.c:120] DISTRIB_RELEASE="rolling"
00:00:00.002 [INFO] [sway/main.c:120] DISTRIB_DESCRIPTION="Arch Linux"
00:00:00.002 [INFO] [sway/main.c:136] Contents of /etc/os-release:
00:00:00.002 [INFO] [sway/main.c:120] NAME="Arch Linux"
00:00:00.002 [INFO] [sway/main.c:120] PRETTY_NAME="Arch Linux"
** Message: 20:13:12.259: configModel.vala:289: Loading Config: "/etc/xdg/swaync/config.json"
** Message: 20:13:12.259: functions.vala:78: Loading CSS: "/etc/xdg/swaync/style.css"
** Message: 20:13:12.260: functions.vala:92: Loading CSS: "/home/leadseason/test.css"
** Message: 20:13:12.263: factory.vala:44: Loading widget: inhibitors
** Message: 20:13:12.263: factory.vala:44: Loading widget: title
** Message: 20:13:12.263: factory.vala:44: Loading widget: dnd
@LeadSeason
LeadSeason / swaync_err_log.txt
Created August 17, 2023 20:02
swaync bug report
** Message: 22:57:12.088: configModel.vala:315: Loading Config: "/etc/xdg/swaync/config.json"
** Message: 22:57:12.088: functions.vala:78: Loading CSS: "/etc/xdg/swaync/style.css"
** Message: 22:57:12.089: functions.vala:92: Loading CSS: "/etc/xdg/swaync/style.css"
** Message: 22:57:12.100: factory.vala:44: Loading widget: inhibitors
** Message: 22:57:12.100: factory.vala:44: Loading widget: title
** Message: 22:57:12.100: factory.vala:44: Loading widget: dnd
# Default config for sway
#
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference.
### Variables
#
# Logo key. Use Mod1 for Alt.
set $mod Mod1
This file has been truncated, but you can view the full file.
00:00:00.000 [INFO] [sway/main.c:338] Sway version 0.3.2-c7fa46fa (Jul 23 2023, branch 'master')
00:00:00.000 [INFO] [sway/main.c:339] wlroots version 0.16.2
00:00:00.002 [INFO] [sway/main.c:120] Linux juusto.localseason.eu 6.4.4-1-cachyos #1 SMP PREEMPT_DYNAMIC Wed, 19 Jul 2023 23:39:29 +0000 x86_64 GNU/Linux
00:00:00.002 [INFO] [sway/main.c:136] Contents of /etc/lsb-release:
00:00:00.002 [INFO] [sway/main.c:120] DISTRIB_ID="Arch"
00:00:00.002 [INFO] [sway/main.c:120] DISTRIB_RELEASE="rolling"
00:00:00.002 [INFO] [sway/main.c:120] DISTRIB_DESCRIPTION="Arch Linux"
00:00:00.002 [INFO] [sway/main.c:136] Contents of /etc/os-release:
00:00:00.002 [INFO] [sway/main.c:120] NAME="Arch Linux"
00:00:00.002 [INFO] [sway/main.c:120] PRETTY_NAME="Arch Linux"
import numpy as np
import sys
# List of xterm colors and ther corresponding hex values
colorList = [
[0, 0x00, 0x00, 0x00],
[1, 0x80, 0x00, 0x00],
[2, 0x00, 0x80, 0x00],
[3, 0x80, 0x80, 0x00],
[4, 0x00, 0x00, 0x80],
@LeadSeason
LeadSeason / Connect4.c
Created December 8, 2022 07:40
Connect 4 Game created in c
/*
* Connect 4 game created in c
*/
// vim:set tabstop=2
// vim:set shiftwith=2
#include <stdio.h>
#include <stdlib.h>
#include <time.h>