diff options
-rw-r--r-- | .i3/config | 9 | ||||
-rw-r--r-- | .xinitrc | 2 | ||||
-rwxr-xr-x | install.sh | 2 | ||||
-rw-r--r-- | twmn/twmn.conf | 84 |
4 files changed, 90 insertions, 7 deletions
@@ -325,10 +325,9 @@ bar { #exec_always --no-startup-id ~/.i3/start_polybar.sh jonny # Pulse Audio controls -bindsym XF86AudioRaiseVolume exec --no-startup-id pactl -- set-sink-volume 0 +5% #increase sound volume -bindsym XF86AudioLowerVolume exec --no-startup-id pactl -- set-sink-volume 0 -5% #decrease sound volume -bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # mute sound -#Microphone mute +bindsym XF86AudioRaiseVolume exec --no-startup-id pactl -- set-sink-volume 0 +5% +bindsym XF86AudioLowerVolume exec --no-startup-id pactl -- set-sink-volume 0 -5% +bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute 1 toggle #Mediacontrol @@ -343,7 +342,7 @@ bindsym XF86AudioNext exec --no-startup-id playerctl next bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 5 -fps 30 # increase screen brightness bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 5 -fps 30 # decrease screen brightness -#bindsym XF86RFKill exec --no-startup-id i3-nagbar -t warning -m asdf +exec --no-startup-id twmnd #start autostart.sh exec --no-startup-id ~/autostart.sh @@ -11,7 +11,7 @@ if [ -d /etc/X11/xinit/xinitrc.d ]; then unset f fi -#Screen background feh +#Select random background image shopt -s nullglob pics=(~/vimconfig/pictures/b_*) @@ -8,7 +8,7 @@ MODULES=(.i3 .vim .xinitrc .compton.conf .bashrc .Xresources .radare2rc .bash_profile) #Configs for .config -CFGFOLDER=(polybar powerline nvim termite) +CFGFOLDER=(polybar powerline nvim termite twmn) #Scripts SCRIPTS=() diff --git a/twmn/twmn.conf b/twmn/twmn.conf new file mode 100644 index 0000000..74facd4 --- /dev/null +++ b/twmn/twmn.conf @@ -0,0 +1,84 @@ +[gui] +; Screen number to display notifications on when using a multi-head desktop. +screen= ; 0 indexed screen number + +; WARNING: Deprecated by "screen" +; Absolute position from the top-left corner of the slide. You may need it for a multi-screen setup. +; You still have to set position in order to choose the slide animation. If empty, twmnd will try +; to figure out where to display the slide according to your desktop size and the slide position. +absolute_position= ; Supported format: WxH. Width and Height being integers. + +; Background color. +background_color=black ; RBG hex and keywords (eg. lightgray) are supported. + +; An icon for the layout. Useful only for a layout file. +icon= ; Path to image file. Optional. + +; Font family. +font=Sans + +; Font size. +font_size=15 ; In pixel. + +; Font variation. +; accepted values are: +; oblique, italic, ultra-light, light, medium, semi-bold, bold, ultra-bold, heavy, ultra-condensed, +; extra-condensed, condensed, semi-condensed, semi-expanded, expanded, extra-expanded, ultra-expanded. +font_variant=medium + +; Text color. +foreground_color=white ; RBG hex and keywords (eg. lightgray) are supported. + +; Height of the slide bar. Useful to match your tiling window manager's bar. +height=18 ; In pixel. + +; Position of the notification slide. +position=top_right ; Accepted values: top_right (tr), top_left (tl), bottom_right (br), + ; bottom_left (bl), top_center (tc), bottom_center (bc), center (c). + +; moves the position of the slide in +/- pixels on the x or y axis (e.g. "+50" or "-100") +offset_x=+0 ; default is 0 +offset_y=+0 ; default is 0 + +; The animation to use when the slide appear +in_animation=38 ; see https://doc.qt.io/qt-5/qeasingcurve.html#Type-enum for types + +; The in animation's duration +in_animation_duration=1000 ; in milliseconds + +; The animation to use whe the slide is closing +out_animation=13 + +; The out animation's duration +out_animation_duration=1000 ; in milliseconds + +; Enable or disable notification bounce when changing notification +bounce=true ; true or false + +; Change bounce duration +bounce_duration=500 ; in milliseconds + +; If the character length is more then max_length the text is cut off and "..." is appended +max_length = -1 ; default is -1 (which means: don't cut off) + +[icons] +; An icon. You can add as many as you want. +NAME= ; Path to image file. NAME being the icon's custom name. + + +[main] +; Program/command to be executed on notification activation. +activate_command= ; Path to command. + +; Time each notification remains visible. +duration=3000 ; In millisecond. + +; Host address to listen on for notifications. +host=127.0.0.1 + +; UDP port used for notifications. +port=9797 + +; Program/command to play sound with. +sound_command= ; Path to command. Leave empty for no sound. + |