Normalize casing of firefox directory

This commit is contained in:
Manuel Thalmann 2024-07-17 15:54:09 +02:00
parent 49cc7e0590
commit f81c36127d
5 changed files with 3 additions and 3 deletions
scripts/Common/Software/Firefox

View file

@ -0,0 +1,7 @@
#!/bin/bash
if [ "$XDG_SESSION_TYPE" == "wayland" ]
then
export MOZ_ENABLE_WAYLAND=1
else
export MOZ_USE_XINPUT2=1
fi

View file

@ -0,0 +1,12 @@
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
source "$dir/../../../Common/Software/firefox/main.fish"
function configureSW -V dir
sudo cp "$dir/firefox.sh" /etc/profile.d/
end
runInstaller $argv
end