mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-08-01 19:47:25 +02:00
Compare commits
4 Commits
70c98bc45b
...
972a491572
Author | SHA1 | Date | |
---|---|---|---|
972a491572 | |||
e24578090f | |||
a990b34dd6 | |||
09bcdd2b39 |
@ -1 +1 @@
|
||||
3.4.2
|
||||
3.4.4
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user