diff --git a/.config/i3/config b/.config/i3/config index 31fa8c4..aca2236 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -1,4 +1,4 @@ -exec --no-startup-id ~/set_once.sh +exec --no-startup-id ~/set_once_i3.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 diff --git a/.gtkrc-2.0 b/.gtkrc-2.0 deleted file mode 100644 index ac9178e..0000000 --- a/.gtkrc-2.0 +++ /dev/null @@ -1,19 +0,0 @@ -# DO NOT EDIT! This file will be overwritten by LXAppearance. -# Any customization should be done in ~/.gtkrc-2.0.mine instead. - -include "~/.gtkrc-2.0.mine" -gtk-theme-name="Arc-Dark" -gtk-icon-theme-name="Arc-X-D" -gtk-font-name="Noto Sans 11" -gtk-cursor-theme-name="capitaine-cursors-light" -gtk-cursor-theme-size=14 -gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ -gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR -gtk-button-images=0 -gtk-menu-images=0 -gtk-enable-event-sounds=1 -gtk-enable-input-feedback-sounds=1 -gtk-xft-antialias=1 -gtk-xft-hinting=1 -gtk-xft-hintstyle="hintmedium" -gtk-xft-rgba="rgb" diff --git a/README.md b/README.md index f3f8ab7..06e3458 100644 --- a/README.md +++ b/README.md @@ -103,25 +103,23 @@ colors are in rgba calling transparency in the last colum: `cd endeavouros-i3wm-setup` +`cp .Xresources ~/.Xresources` + `cp -R .config/* ~/.config/` `chmod -R +x ~/.config/i3/scripts` (make scripts executable) `dbus-launch dconf load / < xed.dconf` (setup xed-editor) -If you have the old EndeavourOS default i3-setup installed you need to remove .Xresources file -(old color profile not used anymore for rofi menus): -`rm ~.Xresources` - **install needed apps and programms for i3wm:** We do use now the default packages lists repo for all packages lists: `wget https://raw.githubusercontent.com/endeavouros-team/EndeavourOS-packages-lists/master/i3` `sudo pacman -S --needed - < i3` -## or use the `setup.sh`: +## or use the `i3.sh`: -`wget https://raw.githubusercontent.com/endeavouros-team/endeavouros-i3wm-setup/main/setup.sh` +`wget https://raw.githubusercontent.com/endeavouros-team/endeavouros-i3wm-setup/main/i3.sh` ## warning this will may overwrite existing files! diff --git a/setup.sh b/i3.sh similarity index 96% rename from setup.sh rename to i3.sh index 88e4b65..d6b2b25 100644 --- a/setup.sh +++ b/i3.sh @@ -3,7 +3,6 @@ git clone https://github.com/endeavouros-team/endeavouros-i3wm-setup.git cd endeavouros-i3wm-setup cp -R .config ~/ chmod -R +x ~/.config/i3/scripts -cp .gtkrc-2.0 ~/ cp .nanorc ~/ dbus-launch dconf load / < ~/xed.dconf sed -i 's|\(exec --no-startup-id ~/set_once.sh\)|# \1|' ~/.config/i3/config diff --git a/set_once.sh b/set_once_i3.sh similarity index 50% rename from set_once.sh rename to set_once_i3.sh index e017772..3094805 100644 --- a/set_once.sh +++ b/set_once_i3.sh @@ -1,6 +1,6 @@ #!/bin/bash dbus-launch dconf load / < ~/xed.dconf chmod -R +x ~/.config/i3/scripts -sed -i 's|\(exec --no-startup-id ~/set_once.sh\)|# \1|' ~/.config/i3/config +sed -i 's|\(exec --no-startup-id ~/set_once_i3.sh\)|# \1|' ~/.config/i3/config rm ~/xed.dconf -rm ~/set_once.sh +rm ~/set_once_i3.sh