diff options
author | Adam Stück <adam@adast.xyz> | 2023-03-22 07:49:52 +0100 |
---|---|---|
committer | Adam Stück <adam@adast.xyz> | 2023-04-28 20:31:52 +0200 |
commit | 1abce784cf269fd98ee5faa09e52ba642f2e61ec (patch) | |
tree | 716d9b1961dc7235c665747454f03d5f488bffac /.config/X11 | |
parent | c1fae7c333a7c89347b1955e23aadae47e28f20f (diff) |
switched from i3 to sway
Diffstat (limited to '.config/X11')
-rw-r--r-- | .config/X11/Xresources | 5 | ||||
-rwxr-xr-x | .config/X11/xinitrc | 45 |
2 files changed, 0 insertions, 50 deletions
diff --git a/.config/X11/Xresources b/.config/X11/Xresources index 270a56e..a65c7b6 100644 --- a/.config/X11/Xresources +++ b/.config/X11/Xresources @@ -1,8 +1,3 @@ Xft.dpi: 108 Xcursor.size: 32 Xcursor.theme: phinger-cursors-light - -Nsxiv.window.background: #282c34 -Nsxiv.window.foreground: #a8b4bb -Nsxiv.bar.background: #31353f -Nsxiv.bar.font: JetBrainsMono Nerd Font:size=10 diff --git a/.config/X11/xinitrc b/.config/X11/xinitrc deleted file mode 100755 index 2434e05..0000000 --- a/.config/X11/xinitrc +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -userresources=$XDG_CONFIG_HOME/X11/Xresources -usermodmap=$XDG_CONFIG_HOME/X11/Xmodmap -sysresources=/etc/X11/xinit/.Xresources -sysmodmap=/etc/X11/xinit/.Xmodmap - -# merge in defaults and keymaps - -if [ -f $sysresources ]; then - xrdb -merge $sysresources -fi - -if [ -f $sysmodmap ]; then - xmodmap $sysmodmap -fi - -if [ -f "$userresources" ]; then - xrdb -merge "$userresources" -fi - -if [ -f "$usermodmap" ]; then - xmodmap "$usermodmap" -fi - -# start some nice programs - -if [ -d /etc/X11/xinit/xinitrc.d ] ; then - for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do - [ -x "$f" ] && . "$f" - done - unset f -fi - -~/.local/bin/clipclear & -clipmenud & -playerctld daemon & -redshift -l 55.7:12.6 -t 5700:4000 -g 0.9 -m randr -v & -unclutter -b & -xwallpaper --center ~/.local/share/bg & -xidlehook --detect-sleep --not-when-audio --not-when-fullscreen \ - --timer 300 '~/.local/bin/lock' '' & -~/.local/bin/comptoggle & -~/.local/bin/rate & -exec i3 |