mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-30 00:24:59 +01:00
Got awesome working with Ubuntu
This commit is contained in:
parent
266f5da0b3
commit
f366268cc2
|
@ -607,14 +607,13 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
|
|||
|
||||
|
||||
-- Stuff to kill just in case
|
||||
awful.spawn.once("killall lxsession")
|
||||
awful.spawn.once("killall lxpolkit")
|
||||
awful.spawn.once("killall picom")
|
||||
awful.spawn.once("kilall nm-applet")
|
||||
awful.spawn.once("killall volumeicon")
|
||||
|
||||
-- Stuff to start
|
||||
-- awful.spawn.once("lxpolkit") -- Polkit
|
||||
awful.spawn.once("lxsession") -- Let's run an lxsession which has a polkit
|
||||
awful.spawn.once("lxpolkit") -- Let's run an lxpolkit
|
||||
awful.spawn.once("picom") -- Compositor
|
||||
awful.spawn.once("nm-applet") -- Network Manager applet
|
||||
awful.spawn.once("autorandr -l dual") -- Load my dual monitor autorandr config
|
||||
|
|
11
setup
11
setup
|
@ -2,12 +2,21 @@
|
|||
|
||||
echo "Setting up the stuff..."
|
||||
|
||||
git submodule init
|
||||
git submodule update
|
||||
|
||||
if [[ "$(uname -a)" == *"Ubuntu"* ]]
|
||||
then
|
||||
echo "Updating Ubuntu"
|
||||
sudo apt update && sudo apt upgrade
|
||||
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
|
||||
echo "Updating Arch"
|
||||
sudo pacman -Syyu
|
||||
|
|
Loading…
Reference in a new issue