Skip to content

Instantly share code, notes, and snippets.

View jduerr's full-sized avatar

Johannes Dürr jduerr

View GitHub Profile
@jduerr
jduerr / transparent_ptyxis_background.sh
Last active April 12, 2026 16:19
Bash script to set Ubuntu's ptyxis Terminal (25.10 and newer) with a transparent / translucent background
#!/bin/bash
# Use "chmod u+x transparent_ptyxis_background.sh" to give script permission to execute
# Read the UUID of the default profile
UUID_RAW=$(dconf read /org/gnome/Ptyxis/default-profile-uuid)
# Remove possible single quotes (') from the output
UUID=$(echo "$UUID_RAW" | tr -d "'")
@jduerr
jduerr / gnome-transparent-sidebar.css
Last active February 17, 2026 11:11 — forked from albertgoss/gnome-transparent-sidebar.css
Make Gnome applications sidebar semi-transparent, and add blur with Blur My Shell Extension if you want to
/* Mohammad Mahdi Tayebi
*
* To apply transparent sidebar. copy this file into ~/.config/gtk-4.0/gtk.css and if
* you use adw-gtk3 theme you can add it to ~/.config/gtk-3.0/gtk.css as well
*
* Use blur my shell extension to add blur effect behind the transparent part of windows
*/
/* Transparent Sidebar */
window {
@jduerr
jduerr / Readme.md
Last active February 28, 2026 18:50
Install ON1 PhotoRAW MAX 2026 on Linux using Lutris (Wine)

What i did to get ON1 Photo RAW 2026 Max working on Ubuntu 24.04 LTS using Lutris / Wine

  1. Installed Lutris (Version 0.5.14)
  2. Installed wine (Version 11.0)
  3. Downloaded ON1-PhotoRAW .exe installer from official website
  4. Lutris: Create new "game" with yml file (Use the one below)
  5. wait until everything needed is being downloaded and installed by lutris
  6. set the installer exe - and start installation
  7. make sure that there is a valid Install path selected during installation
@jduerr
jduerr / gist:f149034e8d3789c776c07206e2312cd1
Created February 24, 2018 11:18
Disable auto start for Android File Transfer (macOS)
I stumbled upon this solution: https://gist.github.com/zeroseis/ce66d4c6b776577442a6
But in my version of Android the .app file was not placed under /Content/Resources but /Content/Helpers...
so the needed terminal command in my case is:
PID=$(ps -fe | grep "[A]ndroid File Transfer Agent" | awk '{print $2}'); if [[ -n $PID ]]; then kill $PID; fi; mv "/Applications/Android File Transfer.app/Contents/Helpers/Android File Transfer Agent.app" "/Applications/Android File Transfer.app/Contents/Helpers/Android File Transfer Agent DISABLED.app"; mv "${HOME}/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app" "${HOME}/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent DISABLED.app"; osascript -e 'tell application "System Events" to delete every login item whose name is "Android File Transfer Agent"'