summaryrefslogtreecommitdiff
path: root/home/xyz/.xinitrc
diff options
context:
space:
mode:
authorxyz <gky44px1999@gmail.com>2023-10-23 22:16:29 -0700
committerxyz <gky44px1999@gmail.com>2023-10-23 22:16:29 -0700
commit28e4f59d9af025e4ca53d4653063162ba0210cc4 (patch)
treec09abfcb2117a5a860a19dd3d216acd0200414a4 /home/xyz/.xinitrc
parent258b37a79afed83152f315d7e7139a274ca2e318 (diff)
rm useless
Diffstat (limited to 'home/xyz/.xinitrc')
-rw-r--r--home/xyz/.xinitrc60
1 files changed, 0 insertions, 60 deletions
diff --git a/home/xyz/.xinitrc b/home/xyz/.xinitrc
deleted file mode 100644
index 97bbe93d..00000000
--- a/home/xyz/.xinitrc
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/sh
-
-userresources="$HOME/.Xresources"
-usermodmap="$HOME/.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
-
-#if [ -e "$XDG_PICTURES_DIR/wallpapers/wallpaper" ]; then
-# display -window root "$XDG_PICTURES_DIR/wallpapers/wallpaper" &
-#else
-# shufwall &
-#fi
-
-#clipmenud &
-fcitx5 -d
-redshift &
-sbar &
-# udiskie recommanded to auto start here in .xinitrc, see:
-# https://github.com/coldfix/udiskie/issues/93
-# https://github.com/coldfix/udiskie/issues/226
-udiskie &
-# xorg-server 21.1.1-2 set correct dpi for my computer, but I choose to take the blue pill
-# Attention, don't use & at the end otherwise dwm status bar won't have proper dpi.
-# xorg-server 21.1.1-3 "fixed" it, so no need now
-#xrandr --dpi 96
-# default fastest windows 10 keyboard repeat delay and rate
-# without editing registry, using filter key, or other third party program
-# see http://stereopsis.com/keyrepeat/
-xset r rate 250 30
-# https://dianne.skoll.ca/wiki/Remind_FAQ#How_can_I_generate_popup_windows_to_warn_me_of_timed_reminders.3F
-rem -z -k'notify-send -u critical "reminder" %s &' &
-alacritty &
-exec dwm