2022-07-26 08:38:09 -04:00
#!/bin/bash
2024-04-28 13:57:34 -07:00
# Copyright (C) 2022-2024 Thien Tran
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
echo ' [ microsoft-edge]
name = microsoft-edge
baseurl = https://packages.microsoft.com/yumrepos/edge/
enabled = 1
gpgcheck = 1
gpgkey = https://packages.microsoft.com/keys/microsoft.asc' | sudo tee /etc/yum.repos.d/microsoft-edge.repo
2022-07-26 08:38:09 -04:00
sudo dnf install -y microsoft-edge-stable
2024-04-28 13:57:34 -07:00
2023-12-01 20:50:25 -07:00
sudo mkdir -p /etc/opt/edge/policies/managed/ /etc/opt/edge/policies/recommended/
2023-12-01 23:21:43 -07:00
curl --proxy http://127.0.0.1:8082 https://raw.githubusercontent.com/TommyTran732/Microsoft-Edge-Policies/main/Linux/managed.json | sudo tee /etc/opt/edge/policies/managed/managed.json
2024-05-11 22:40:29 -07:00
curl --proxy http://127.0.0.1:8082 https://raw.githubusercontent.com/TommyTran732/Microsoft-Edge-Policies/main/Linux/recommended.json | sudo tee /etc/opt/edge/policies/managed/recommended.json
# Work around for Edge audio bug
sudo dnf install -y pulseaudio-utils
echo ' [ Unit]
Description = Run pacmd to work around edge audio bug
After = pipewire-pulse.socket
Requires = pipewire-pulse.socket
[ Service]
Type = oneshot
2024-05-11 23:08:47 -07:00
ExecStart = -/usr/bin/pacmd
2024-05-11 22:40:29 -07:00
[ Install]
WantedBy = default.target' | sudo tee /etc/systemd/user/pacmd.service
2024-05-11 23:08:47 -07:00
mkdir -p /etc/systemd/user-preset/
echo 'enable pacmd.service' | sudo tee /etc/systemd/user-preset/10-pacmd.preset
2024-05-11 22:40:29 -07:00
# Ignore the error. It is just pacmd complaining that pulseaudio daemon is not there. But it will somehow magically trigger the pipewire-pulse socket and make audio work.
# For some uncomprehensible reason, manually enabling pipewire-pulse.service will not work for Edge audio.
2024-05-11 23:08:47 -07:00
# /rw/home/user is broken: https://forum.qubes-os.org/t/how-does-rw-home-user-directory-work/15602