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
|
# It's important to note that markup inside the format option will be parsed
|
||||||
# regardless of what this is set to.
|
# regardless of what this is set to.
|
||||||
markup = full
|
markup = no
|
||||||
|
#markup = full
|
||||||
|
|
||||||
# The format of the message. Possible variables are:
|
# The format of the message. Possible variables are:
|
||||||
# %a appname
|
# %a appname
|
||||||
|
@ -201,7 +202,7 @@
|
||||||
max_icon_size = 32
|
max_icon_size = 32
|
||||||
|
|
||||||
# Paths to default icons.
|
# 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 ###
|
### History ###
|
||||||
|
|
||||||
|
@ -218,7 +219,7 @@
|
||||||
dmenu = /usr/bin/dmenu -p dunst:
|
dmenu = /usr/bin/dmenu -p dunst:
|
||||||
|
|
||||||
# Browser for opening urls in context menu.
|
# 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 rule-defined scripts, even if the notification is suppressed
|
||||||
always_run_script = true
|
always_run_script = true
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
GTK2_RC_FILES=/usr/share/themes/Orchis-light/gtk-2.0/gtkrc foxitreader
|
GTK2_RC_FILES=/usr/share/themes/Orchis-light/gtk-2.0/gtkrc foxitreader
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/sh
|
#!/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
|
while true; do
|
||||||
dwm
|
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
|
fi
|
||||||
|
|
||||||
dbus-update-activation-environment --systemd DISPLAY
|
dbus-update-activation-environment --systemd DISPLAY
|
||||||
|
# dbus-update-activation-environment --all
|
||||||
|
|
||||||
eval $(gnome-keyring-daemon --start)
|
eval $(gnome-keyring-daemon --start)
|
||||||
export SSH_AUTH_SOCK
|
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