Update dotfiles and add new files

This commit is contained in:
Santiago Lo Coco 2025-01-05 18:07:25 +01:00
parent a5c9bea672
commit 7cf33ae322
Signed by: slococo
GPG Key ID: F995EFC8B68B1ADF
8 changed files with 50 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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

11
dotfiles/.xinitrc Normal file
View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -0,0 +1,10 @@
[Unit]
Description=Powertop tunings
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/powertop --auto-tune
[Install]
WantedBy=multi-user.target

View File

@ -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