Update dotfiles and add new files
This commit is contained in:
parent
a5c9bea672
commit
7cf33ae322
|
@ -140,7 +140,8 @@
|
|||
#
|
||||
# It's important to note that markup inside the format option will be parsed
|
||||
# regardless of what this is set to.
|
||||
markup = full
|
||||
markup = no
|
||||
#markup = full
|
||||
|
||||
# The format of the message. Possible variables are:
|
||||
# %a appname
|
||||
|
@ -201,7 +202,7 @@
|
|||
max_icon_size = 32
|
||||
|
||||
# Paths to default icons.
|
||||
icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
|
||||
icon_path = /usr/share/icons/hicolor/64x64/apps/
|
||||
|
||||
### History ###
|
||||
|
||||
|
@ -218,7 +219,7 @@
|
|||
dmenu = /usr/bin/dmenu -p dunst:
|
||||
|
||||
# Browser for opening urls in context menu.
|
||||
browser = /usr/bin/firefox -new-tab
|
||||
browser = /usr/bin/librewolf --new-tab
|
||||
|
||||
# Always run rule-defined scripts, even if the notification is suppressed
|
||||
always_run_script = true
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
GTK2_RC_FILES=/usr/share/themes/Orchis-light/gtk-2.0/gtkrc foxitreader
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
dbus-update-activation-environment --all
|
||||
# dbus-update-activation-environment --all
|
||||
|
||||
export DBUS_SESSION_BUS_ADDRESS="unix:path=$XDG_RUNTIME_DIR/bus"
|
||||
# export DBUS_SESSION_BUS_ADDRESS="unix:path=$XDG_RUNTIME_DIR/bus"
|
||||
|
||||
while true; do
|
||||
dwm
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/X11/xprofile" ]; then
|
||||
source "${XDG_CONFIG_HOME:-$HOME/.config}/X11/xprofile"
|
||||
else
|
||||
source "$HOME/.xprofile"
|
||||
fi
|
||||
|
||||
while true; do
|
||||
dwm
|
||||
done
|
|
@ -31,6 +31,7 @@ else
|
|||
fi
|
||||
|
||||
dbus-update-activation-environment --systemd DISPLAY
|
||||
# dbus-update-activation-environment --all
|
||||
|
||||
eval $(gnome-keyring-daemon --start)
|
||||
export SSH_AUTH_SOCK
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
[Unit]
|
||||
Description=Disable WiFi with rfkill
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/bin/rfkill block wifi
|
||||
ExecStop=
|
||||
RemainAfterExit=yes
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=Powertop tunings
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
ExecStart=/usr/bin/powertop --auto-tune
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -0,0 +1,9 @@
|
|||
[Unit]
|
||||
Description=Start sddm service at a fixed time after boot
|
||||
|
||||
[Timer]
|
||||
OnStartupSec=10
|
||||
Unit=sddm.service
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue