Compare commits

...

4 Commits

5 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
3.4.2
3.4.4

View File

@ -7,7 +7,7 @@ GEM
tilt
logger (1.7.0)
prettier_print (1.2.1)
rbs (3.9.2)
rbs (3.9.4)
logger
syntax_tree (6.2.0)
prettier_print (>= 1.2.0)
@ -34,7 +34,7 @@ DEPENDENCIES
syntax_tree-rbs
RUBY VERSION
ruby 3.4.2p28
ruby 3.4.4p34
BUNDLED WITH
2.6.2
2.6.9

View File

@ -12,6 +12,11 @@ set -x
# multiple times), but for the sake of legibility and un/commenting this
# isn't done within this script.
# I am lazy
if [ -f flatpakifier.bash ]; then
(./flatpakifier.bash &)
fi
# Overrides for all apps improving Quality of Life
# - debugging with gdb
# - curl configuration following

View File

@ -24,6 +24,7 @@ ln -sfv $FLATPAKEXPORTS/org.gnome.eog $TARGETDIR/eog
ln -sfv $FLATPAKEXPORTS/org.gnome.eog $TARGETDIR/eom
#ln -sfv $FLATPAKEXPORTS/page.codeberg.dnkl.foot $TARGETDIR/foot
ln -sfv $FLATPAKEXPORTS/com.calibre_ebook.calibre $TARGETDIR/calibre
ln -sfv $FLATPAKEXPORTS/org.pulseaudio.pavucontrol $TARGETDIR/pavucontrol
# Electron apps that actually need wrappers and flags
#ln -sfv $FLATPAKEXPORTS/com.visualstudio.code $TARGETDIR/code

View File

@ -8,6 +8,12 @@ elif [[ -d "$HOME/.config/google-chrome-beta" && -d "$HOME/.cache/google-chrome-
/usr/bin/google-chrome-beta --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
elif hash google-chrome-stable 2> /dev/null; then
/usr/bin/google-chrome-stable --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
elif hash google-chrome-beta 2> /dev/null; then
/usr/bin/google-chrome-beta --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
elif hash google-chrome-unstable 2> /dev/null; then
/usr/bin/google-chrome-unstable --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
elif hash google-chrome-canary 2> /dev/null; then
/usr/bin/google-chrome-canary --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
elif hash com.google.Chrome 2> /dev/null; then
com.google.Chrome --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
else