This commit is contained in:
Stephan Raabe 2023-10-12 13:23:55 +02:00
parent 7be6a07e10
commit 8541d3ae8b
13 changed files with 26 additions and 56 deletions

View File

@ -92,9 +92,6 @@ packagesPacman=(
"ttf-fira-code"
"ttf-firacode-nerd"
"figlet"
"lxappearance"
"breeze"
"breeze-gtk"
"vlc"
"exa"
"python-pip"
@ -106,9 +103,9 @@ packagesPacman=(
"tumbler"
"xautolock"
"blueman"
"nautilus"
"sddm"
"code"
"papirus-icon-theme"
);
packagesYay=(
@ -116,7 +113,6 @@ packagesYay=(
"pfetch"
"bibata-cursor-theme"
"trizen"
"kora-icon-theme"
"sddm-sugar-dark"
);

View File

@ -88,8 +88,7 @@ echo ""
_installSymLink .gtkrc-2.0 ~/.gtkrc-2.0 ~/dotfiles/gtk/.gtkrc-2.0 ~/.gtkrc-2.0
_installSymLink gtk-3.0 ~/.config/gtk-3.0 ~/dotfiles/gtk/gtk-3.0/ ~/.config/
_installSymLink .Xresouces ~/.Xresources ~/dotfiles/gtk/.Xresources ~/.Xresources
_installSymLink .icons ~/.icons ~/dotfiles/gtk/.icons/ ~/
_installSymLink gtk-4.0 ~/.config/gtk-4.0 ~/dotfiles/gtk/gtk-4.0/ ~/.config/
echo "-------------------------------------"
echo "-> Install Qtile dotfiles"

View File

@ -1 +0,0 @@
Xcursor.theme: Bibata-Modern-Ice

View File

@ -1,15 +1,2 @@
gtk-theme-name="Breeze-Dark"
gtk-icon-theme-name="kora"
gtk-font-name="Cantarell 11"
gtk-icon-theme-name="Papirus-Dark"
gtk-cursor-theme-name="Bibata-Modern-Ice"
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=1
gtk-menu-images=1
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=1
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle="hintfull"
gtk-application-prefer-dark-theme=true

View File

@ -1,5 +0,0 @@
# This file is written by LXAppearance. Do not edit.
[Icon Theme]
Name=Default
Comment=Default Cursor Theme
Inherits=Bibata-Modern-Ice

View File

@ -1,16 +1,4 @@
[Settings]
gtk-theme-name="Breeze-Dark"
gtk-icon-theme-name="kora"
gtk-font-name=Cantarell 11
gtk-cursor-theme-name="Bibata-Modern-Ice"
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_ICONS
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=1
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=hintfull
gtk-icon-theme-name=Papirus-Dark
gtk-cursor-theme-name=Bibata-Modern-Ice
gtk-application-prefer-dark-theme=true

4
gtk/gtk-4.0/settings.ini Normal file
View File

@ -0,0 +1,4 @@
[Settings]
gtk-icon-theme-name=Papirus-Dark
gtk-cursor-theme-name=Bibata-Modern-Ice
gtk-application-prefer-dark-theme=true

View File

@ -1,8 +1,6 @@
#!/bin/sh
gnome_schema="org.gnome.desktop.interface"
gsettings set "$gnome_schema" gtk-theme "Breeze-Dark"
gsettings set "$gnome_schema" icon-theme "kora"
gsettings set "$gnome_schema" icon-theme "Papirus-Dark"
gsettings set "$gnome_schema" cursor-theme "Bibata-Modern-Ice"
gsettings set "$gnome_schema" font-name "Cantarell 11"
gsettings set "$gnome_schema" color-scheme "prefer-dark"

View File

@ -8,7 +8,7 @@ exec-once = swww init
exec-once = dunst
exec-once = ~/dotfiles/scripts/lockscreentime.sh
exec-once = ~/dotfiles/scripts/updatewal-swww.sh
exec-once = ~/dotfiles/hypr/gtk.sh
exec-once = ~/dotfiles/gtk/gtk.sh
exec-once = hyprctl setcursor Bibata-Modern-Ice 24
exec-once = ~/dotfiles/waybar/launch.sh
exec-once = wl-paste --watch cliphist store

View File

@ -18,9 +18,9 @@ $keyboardlayout=de
# Monitor Setup
# See https://wiki.hyprland.org/Configuring/Monitors/
# -----------------------------------------------------
monitor=,preferred,auto,1
# monitor=,2560x1440@120,auto,1
# monitor=,1920x1080@120,auto,1
# monitor=,preferred,auto,1
monitor=,2560x1440@120,auto,1
# monitor=,1920x1080,auto,1
# -----------------------------------------------------
# Autostart & Environment

View File

@ -9,10 +9,5 @@
# by Stephan Raabe (2023)
# -----------------------------------------------------
if [ -f "/usr/bin/nautilus" ]; then
echo "nautilus is installed."
nautilus --new-window
else
echo "nautilus not installed. Launching thunar instead."
thunar
fi;

View File

@ -24,7 +24,8 @@ case $choice in
$option1)
swaylock ;;
$option2)
hyprctl dispatch exit ;;
# loginctl terminate-user $USER # For command line based login
hyprctl dispatch exit ;; # For display manager login
$option3)
systemctl reboot ;;
$option4)

8
wlogout/README.txt Normal file
View File

@ -0,0 +1,8 @@
Select Logout Command depending on your setup:
Use for Display Manager e.g., sddm (DEFAULT)
sleep 1; hyprctl dispatch exit
Use for Arch Linux text based login
sleep 1; loginctl terminate-user $USER