Compare commits

...

5 Commits

Author SHA1 Message Date
a79eec8b54 added chmod +x alias 2020-10-27 00:09:54 +01:00
72d86976e0 added emojipicker to quck actions 2020-10-27 00:08:25 +01:00
399f9a47e6 removed default stuff from dunst 2020-10-27 00:07:53 +01:00
d82237281e improved playerctl hotkeys to prio spotify 2020-10-27 00:07:10 +01:00
e2fe0a9668 added screensaver to i3 2020-10-27 00:05:49 +01:00
5 changed files with 13 additions and 52 deletions

View File

@@ -369,51 +369,7 @@
skip_display = yes
script = ~/.config/dunst/polybar-hook.sh
#[espeak]
# summary = "*"
# script = dunst_espeak.sh
#[script-test]
# summary = "*script*"
# script = dunst_test.sh
#[ignore]
# # This notification will not be displayed
# summary = "foobar"
# format = ""
#[history-ignore]
# # This notification will not be saved in history
# summary = "foobar"
# history_ignore = yes
#[skip-display]
# # This notification will not be displayed, but will be included in the history
# summary = "foobar"
# skip_display = yes
#[signed_on]
# appname = Pidgin
# summary = "*signed on*"
# urgency = low
#
#[signed_off]
# appname = Pidgin
# summary = *signed off*
# urgency = low
#
#[says]
# appname = Pidgin
# summary = *says*
# urgency = critical
#
#[twitter]
# appname = Pidgin
# summary = *twitter.com*
# urgency = normal
#
#[stack-volumes]
# appname = "some_volume_notifiers"
# set_stack_tag = "volume"
#
[notification-sound]
appname = *
script = ~/.config/dunst/play-notification-sound.sh
# vim: ft=cfg

View File

@@ -159,7 +159,6 @@ bindsym $mod+Shift+q exec --no-startup-id ~/.config/i3/killScript.sh
# bindsym $mod+l exec i3lock -i /usr/share/backgrounds/gnome/RainDrops.jpg
bindsym $mod+Return exec --no-startup-id alacritty
bindsym $mod+d exec rofi -show drun -show-icons
bindsym $mod+i exec --no-startup-id i3lock -i ~/.config/i3/lockscreen
bindsym $mod+Shift+e exec rofi -show script -modi script:$HOME/.config/i3/pm.sh
bindsym $mod+s exec $HOME/.config/rofi/rofi-quick-action.sh
@@ -174,9 +173,9 @@ bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle
bindsym XF86TouchpadToggle exec --no-startup-id $HOME/.config/i3/touchpadToggle.sh
bindsym XF86AudioNext exec --no-startup-id playerctl next
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
bindsym XF86AudioNext exec --no-startup-id "playerctl --player=spotify,%any next"
bindsym XF86AudioPrev exec --no-startup-id "playerctl --player=spotify,%any previous"
bindsym XF86AudioPlay exec --no-startup-id "playerctl --player=spotify,%any play-pause"
bindsym $mod+Shift+w exec --no-startup-id networkmanager_dmenu
@@ -186,6 +185,6 @@ exec --no-startup-id picom -b
exec --no-startup-id feh --bg-scale ~/.cache/last-bg
exec_always --no-startup-id $HOME/.config/polybar/launch.sh
#exec --no-startup-id pactl set-sink-mute 0 1
exec --no-startup-id xss-lock -- i3lock -i ~/.config/i3/lockscreen
exec --no-startup-id dunst
exec --no-startup-id alacritty --class=scratchpad_f1
exec --no-startup-id ~/.config/i3/setupScreensaver.sh

4
.config/i3/setupScreensaver.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env sh
xset s 300 180
xss-lock -n /usr/lib/xsecurelock/dimmer -l -- ~/.local/share/scripts/screensaver.sh

View File

@@ -4,3 +4,4 @@ Select wallpaper,$HOME/.local/share/scripts/select-bg.sh
Install Package,alacritty --class "floatme" -e "$XDG_DATA_HOME/scripts/pacman-install.sh"
Take screenshot,$XDG_DATA_HOME/scripts/take-selected-screenshot.sh
Share screenshot,$XDG_DATA_HOME/scripts/share-screenshot.sh
Emoji,rofimoji --clipboarder xclip --typer xdotool
Can't render this file because it contains an unexpected character in line 4 and column 35.

1
.zshrc
View File

@@ -107,3 +107,4 @@ alias mixer="pulsemixer"
alias ssh="TERM=xterm-256color ssh"
alias yt-dl-audio="youtube-dl --extract-audio --audio-format mp3"
alias rm="trash"
alias modx="chmod +x"