Add missing repos for Fedora everything
This commit is contained in:
parent
a0b95ad5bc
commit
7f15568678
3 changed files with 19 additions and 6 deletions
|
@ -0,0 +1,10 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Name=Nextcloud
|
||||||
|
GenericName=File Synchronizer
|
||||||
|
Exec="/usr/bin/nextcloud" --background
|
||||||
|
Terminal=false
|
||||||
|
Icon=Nextcloud
|
||||||
|
Categories=Network
|
||||||
|
Type=Application
|
||||||
|
StartupNotify=false
|
||||||
|
X-GNOME-Autostart-enabled=true
|
|
@ -63,15 +63,17 @@ local function run_once(cmd_arr)
|
||||||
end
|
end
|
||||||
|
|
||||||
run_once({ "urxvtd", "unclutter -root" }) -- entries must be separated by commas
|
run_once({ "urxvtd", "unclutter -root" }) -- entries must be separated by commas
|
||||||
|
|
||||||
awful.spawn.with_shell("picom -b --config /home/leong/.config/picom.conf")
|
awful.spawn.with_shell("picom -b --config $HOME/.config/picom.conf")
|
||||||
-- This function implements the XDG autostart specification
|
-- This function implements the XDG autostart specification
|
||||||
awful.spawn.with_shell(
|
awful.spawn.with_shell(
|
||||||
'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' ..
|
'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' ..
|
||||||
'xrdb -merge <<< "awesome.started:true";' ..
|
'xrdb -merge <<< "awesome.started:true";' ..
|
||||||
-- list each of your autostart commands, followed by ; inside single quotes, followed by ..
|
-- list each of your autostart commands, followed by ; inside single quotes, followed by ..
|
||||||
'dex-autostart --environment Awesome --autostart --search-paths "$XDG_CONFIG_DIRS/autostart:$XDG_CONFIG_HOME/autostart"' -- https://github.com/jceb/dex
|
'dex-autostart --environment Awesome --autostart --search-paths "$XDG_CONFIG_DIRS/autostart:$XDG_CONFIG_HOME/autostart"' .. -- https://github.com/jceb/dex
|
||||||
)
|
'pipewire' ..
|
||||||
|
'pipewire-pulse'
|
||||||
|
)
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
-- {{{ Variable definitions
|
-- {{{ Variable definitions
|
||||||
|
|
|
@ -7,7 +7,8 @@ sudo dnf install -y \
|
||||||
https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \
|
https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \
|
||||||
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
||||||
|
|
||||||
echo 'Adding Flathub'
|
echo 'Adding Flatpak'
|
||||||
|
sudo dnf install -y flatpak
|
||||||
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||||
|
|
||||||
echo 'Enabling Cisco openh264'
|
echo 'Enabling Cisco openh264'
|
||||||
|
@ -32,7 +33,7 @@ sudo dnf install -y \
|
||||||
|
|
||||||
echo 'Install my desktop stuff...'
|
echo 'Install my desktop stuff...'
|
||||||
sudo dnf install -y \
|
sudo dnf install -y \
|
||||||
awesome picom dex-autostart pavucontrol
|
awesome picom pipewire pipewire-pulse dex-autostart pavucontrol
|
||||||
|
|
||||||
echo 'Installing graphical applications...'
|
echo 'Installing graphical applications...'
|
||||||
sudo dnf install -y \
|
sudo dnf install -y \
|
||||||
|
|
Loading…
Reference in a new issue