Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge down #86

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .Xresources

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[Settings]
gtk-font-name=Noto Sans 10
gtk-theme-name=Arc-Darker
gtk-icon-theme-name=Qogir
gtk-cursor-theme-name=Qogir
gtk-theme-name=Arc-Dark
gtk-icon-theme-name=Qogir-dark
gtk-cursor-theme-name=Qogir-dark
gtk-cursor-theme-size=16
gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
Expand Down
1 change: 1 addition & 0 deletions .config/i3/config → etc/skel/.config/i3/config
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
exec --no-startup-id ~/set_once.sh
# This file is a modified version based on default i3-config-wizard config
# source is available here:
# https://raw.githubusercontent.com/endeavouros-team/endeavouros-i3wm-setup/master/.config/i3/config
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function get_mute {

# Uses regex to get brightness from xbacklight
function get_brightness {
xbacklight -get | grep -Po '[0-9]{1,3}' | head -n 1
xbacklight | grep -Po '[0-9]{1,3}' | head -n 1
}

# Returns a mute icon, a volume-low icon, or a volume-high icon, depending on the volume
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions etc/skel/Xresources
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Xcursor.theme: Qogir-dark
Xcursor.size: 16
4 changes: 4 additions & 0 deletions etc/skel/set_once.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
dbus-launch dconf load / < ~/xed.dconf
sed -i 's|\(exec --no-startup-id ~/set_once.sh\)|# \1|' ~/.config/i3/config
rm ~/xed.dconf ~/set_once.sh
File renamed without changes.
9 changes: 4 additions & 5 deletions i3_install
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
#!/usr/bin/env bash
# Maintainer: joekamprad [joekamprad //a_t// endeavouros.com]
git clone https://github.com/endeavouros-team/endeavouros-i3wm-setup.git
cd endeavouros-i3wm-setup
cd endeavouros-i3wm-setup/etc/skel/
cp -R .config ~/
chmod -R +x ~/.config/i3/scripts
cp xed.dconf ~/
dbus-launch dconf load / < ~/xed.dconf
cp .Xresources .profile set_once.sh xed.dconf ~/
cd ..
rm -rf endeavouros-i3wm-setup
sed -i 's|\(exec --no-startup-id ~/set_once.sh\)|# \1|' ~/.config/i3/config
#wget https://raw.githubusercontent.com/endeavouros-team/EndeavourOS-packages-lists/master/i3
#sudo pacman -S --needed - < i3
eos-packagelist --install "i3-Window-Manager"
cd ..
rm -rf endeavouros-i3wm-setup
19 changes: 19 additions & 0 deletions i3_install_isomode
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env bash
# Maintainer: joekamprad [joekamprad //a_t// endeavouros.com]
username="$1"
git clone -b kde https://github.com/endeavouros-team/endeavouros-i3wm-setup.git
cd endeavouros-i3wm-setup/etc/skel/
cp -R .config /home/$username/
cp .Xresources .profile set_once.sh xed.dconf /home/$username/
cd ..
rm -rf endeavouros-i3wm-setup
chown -R $username:$username /home/$username
su $username
cd /home/$username
chmod -R +x /home/$username/.config/i3/scripts
chmod +x /home/$username/set_once.sh
wget https://raw.githubusercontent.com/endeavouros-team/EndeavourOS-packages-lists/master/i3
sudo pacman -S --needed --noconfirm - < /home/$username/i3
rm /home/$username/i3
#eos-packagelist --install "i3-Window-Manager"
cd /
Loading