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
| [DEBUG] 2025/09/24 17:53:06 jellyfin_daemon.go:3718: Executing command: refresh (debug mode: true) | |
| [RT-DAEMON] 2025/09/24 17:53:06 🔄 Forcing full cache refresh... | |
| [RT-DAEMON] 2025/09/24 17:53:06 Authenticating with Jellyfin server... | |
| [RT-DAEMON] 2025/09/24 17:53:06 Attempting username/password authentication... | |
| [DEBUG] 2025/09/24 17:53:06 jellyfin_daemon.go:669: >>> POST /Users/AuthenticateByName | |
| [DEBUG] 2025/09/24 17:53:06 jellyfin_daemon.go:671: >>> BODY: {"Pw":"rinzler","Username":"clu"} | |
| [DEBUG] 2025/09/24 17:53:06 jellyfin_daemon.go:703: <<< 200 ({"User":{"Name":"clu","ServerId":"97755c480b4342bc8da3912b0744d3cd","Id":"2fd28b579a394e53943aae1440f3afb9","PrimaryImageTag":"b4f50cf5b38298488f1d4195f6f06c0c","HasPassword":true,"HasConfiguredPasswo... [truncated for short debug]) | |
| [RT-DAEMON] 2025/09/24 17:53:06 ✅ Username/password authentication successful | |
| [DEBUG] 2025/09/24 17:53:06 jellyfin_daemon.go:832: User ID: 2fd28b579a394e53943aae1440f3afb9 | |
| [RT-DAEMON] 2025/09/24 17:53:06 Fetching all Jellyfin data wit |
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
| package main | |
| import ( | |
| "bytes" | |
| "context" | |
| "crypto/md5" | |
| "encoding/json" | |
| "fmt" | |
| "image" | |
| "image/jpeg" |
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 python3 | |
| import json | |
| import os | |
| import sys | |
| import time | |
| import signal | |
| import asyncio | |
| import logging | |
| import threading |
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
| /** | |
| * ROFI Color Theme | |
| * | |
| * Fullscreen theme with switchable PREVIEW option. | |
| * | |
| * User: Dave Davenport | |
| * Copyright: Dave Davenport | |
| */ | |
| * { |
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
| # Copy this to ~/.config/skippy-xd/skippy-xd.rc and edit it to your liking | |
| # | |
| # File Syntax: | |
| # Comments must be on their own seperate lines that start with a # | |
| # | |
| # colors can be anything XAllocNamedColor can handle | |
| # (like "black" or "#000000") | |
| # | |
| # fonts are Xft font descriptions | |
| # |
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
| --[[ | |
| This file is part of darktable, | |
| copyright (c)2021 Bill Ferguson <wpferguson@gmail.com> | |
| darktable is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. | |
| darktable is distributed in the hope that it will be useful, |
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
| ################################# | |
| # Shadows # | |
| ################################# | |
| # Enabled client-side shadows on windows. Note desktop windows | |
| # (windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow, | |
| # unless explicitly requested using the wintypes option. | |
| # | |
| # shadow = false |
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
| # Convert desktop file urls to nautilus-friendly local paths. | |
| # Accommodates special characters in directory names (!@#$, etc). | |
| DELAY=$1 | |
| FILEURL=$2 | |
| FILEPATH="${FILEURL#file://}" | |
| # Check for running instances of $app on current desktop/workspace.# Convert desktop file urls to nautilus-friendly local paths. | |
| # Accommodates special characters in directory names (!@#$, etc). | |
| DELAY=$1 | |
| APP=org.gnome.Nautilus |
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/sh | |
| # small script to prune extreneous sooc jpg's - we want raw_dir == jpg_dir | |
| # takes one arg: full path to raw_dir | |
| # requires 'trash-cli' package: https://github.com/andreafrancia/trash-cli | |
| RAW_DIR="${1}" # user passes raw directory path | |
| JPG_DIR=$(find "$RAW_DIR" -mindepth 1 -maxdepth 1 -name "*sooc" -type d) # only look dirs ending in "sooc" | |
| # get all files matching .{ext}, return only the basename |
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
| configuration { | |
| display-drun: "/"; | |
| display-window: ""; | |
| show-icons: false; | |
| sidebar-mode: true; | |
| } | |
| * { | |
| background-color: #212D32; |