Got awesome working with Ubuntu

This commit is contained in:
Warren Hood 2023-02-09 21:44:25 +02:00
parent 266f5da0b3
commit f366268cc2
2 changed files with 12 additions and 4 deletions

View file

@ -607,14 +607,13 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
-- Stuff to kill just in case -- Stuff to kill just in case
awful.spawn.once("killall lxsession") awful.spawn.once("killall lxpolkit")
awful.spawn.once("killall picom") awful.spawn.once("killall picom")
awful.spawn.once("kilall nm-applet") awful.spawn.once("kilall nm-applet")
awful.spawn.once("killall volumeicon") awful.spawn.once("killall volumeicon")
-- Stuff to start -- Stuff to start
-- awful.spawn.once("lxpolkit") -- Polkit awful.spawn.once("lxpolkit") -- Let's run an lxpolkit
awful.spawn.once("lxsession") -- Let's run an lxsession which has a polkit
awful.spawn.once("picom") -- Compositor awful.spawn.once("picom") -- Compositor
awful.spawn.once("nm-applet") -- Network Manager applet awful.spawn.once("nm-applet") -- Network Manager applet
awful.spawn.once("autorandr -l dual") -- Load my dual monitor autorandr config awful.spawn.once("autorandr -l dual") -- Load my dual monitor autorandr config

11
setup
View file

@ -2,12 +2,21 @@
echo "Setting up the stuff..." echo "Setting up the stuff..."
git submodule init
git submodule update
if [[ "$(uname -a)" == *"Ubuntu"* ]] if [[ "$(uname -a)" == *"Ubuntu"* ]]
then then
echo "Updating Ubuntu" echo "Updating Ubuntu"
sudo apt update && sudo apt upgrade sudo apt update && sudo apt upgrade
echo "Installing tools/utils" echo "Installing tools/utils"
sudo apt install ripgrep fd-find make stow tmux sudo apt install ripgrep fd-find make stow tmux lxsession thunar power-profiles-daemon playerctl network-manager-gnome volumeicon-alsa picom
echo "Installing arc-icon-theme"
mkdir -p ~/git
git clone https://github.com/horst3180/arc-icon-theme --depth 1 ~/git/arc-icon-theme && cd ~/git/arc-icon-theme
./autogen.sh --prefix=/usr
sudo make install
else else
echo "Updating Arch" echo "Updating Arch"
sudo pacman -Syyu sudo pacman -Syyu