From 43a9f78880cdf3e6dede6ef599dcd30caf670d46 Mon Sep 17 00:00:00 2001 From: Craig Astill Date: Thu, 3 Dec 2020 09:40:14 +0000 Subject: [PATCH] Add i3wm ansible files with config. * Deploy i3 packages. * Added configs. * Define virtual screenlayouts to split 4k monitor for presentations. * Define layouts to be used on startup. * Added notification config. --- bash/.config/dunst/dunstrc | 432 ++++++++++++++++++ bash/.config/i3/config | 233 ++++++++++ bash/.config/i3/i3-status.config | 85 ++++ bash/.config/i3/workspace-1.json | 88 ++++ bash/.config/i3/workspace-1_edited.json | 81 ++++ bash/.config/spotifyd/notifications.sh | 20 + .../single_monitor_3_splits_4k.sh | 14 + bash/.screenlayout/single_monitor_4k.sh | 9 + bash/i3.yml | 36 ++ main.yml | 1 + 10 files changed, 999 insertions(+) create mode 100644 bash/.config/dunst/dunstrc create mode 100644 bash/.config/i3/config create mode 100755 bash/.config/i3/i3-status.config create mode 100644 bash/.config/i3/workspace-1.json create mode 100644 bash/.config/i3/workspace-1_edited.json create mode 100755 bash/.config/spotifyd/notifications.sh create mode 100755 bash/.screenlayout/single_monitor_3_splits_4k.sh create mode 100755 bash/.screenlayout/single_monitor_4k.sh create mode 100644 bash/i3.yml diff --git a/bash/.config/dunst/dunstrc b/bash/.config/dunst/dunstrc new file mode 100644 index 0000000..cb0995b --- /dev/null +++ b/bash/.config/dunst/dunstrc @@ -0,0 +1,432 @@ +[global] + ### Display ### + + # Which monitor should the notifications be displayed on. + monitor = 0 + + # Display notification on focused monitor. Possible modes are: + # mouse: follow mouse pointer + # keyboard: follow window with keyboard focus + # none: don't follow anything + # + # "keyboard" needs a window manager that exports the + # _NET_ACTIVE_WINDOW property. + # This should be the case for almost all modern window managers. + # + # If this option is set to mouse or keyboard, the monitor option + # will be ignored. + follow = mouse + + # The geometry of the window: + # [{width}]x{height}[+/-{x}+/-{y}] + # The geometry of the message window. + # The height is measured in number of notifications everything else + # in pixels. If the width is omitted but the height is given + # ("-geometry x2"), the message window expands over the whole screen + # (dmenu-like). If width is 0, the window expands to the longest + # message displayed. A positive x is measured from the left, a + # negative from the right side of the screen. Y is measured from + # the top and down respectively. + # The width can be negative. In this case the actual width is the + # screen width minus the width defined in within the geometry option. + geometry = "400x50-30+20" + + # Show how many messages are currently hidden (because of geometry). + indicate_hidden = yes + + # Shrink window if it's smaller than the width. Will be ignored if + # width is 0. + shrink = no + + # The transparency of the window. Range: [0; 100]. + # This option will only work if a compositing window manager is + # present (e.g. xcompmgr, compiz, etc.). + transparency = 0 + + # The height of the entire notification. If the height is smaller + # than the font height and padding combined, it will be raised + # to the font height and padding. + notification_height = 0 + + # Draw a line of "separator_height" pixel height between two + # notifications. + # Set to 0 to disable. + separator_height = 2 + + # Padding between text and separator. + padding = 8 + + # Horizontal padding. + horizontal_padding = 8 + + # Defines width in pixels of frame around the notification window. + # Set to 0 to disable. + frame_width = 3 + + # Defines color of the frame around the notification window. + frame_color = "#aaaaaa" + + # Define a color for the separator. + # possible values are: + # * auto: dunst tries to find a color fitting to the background; + # * foreground: use the same color as the foreground; + # * frame: use the same color as the frame; + # * anything else will be interpreted as a X color. + separator_color = frame + + # Sort messages by urgency. + sort = yes + + # Don't remove messages, if the user is idle (no mouse or keyboard input) + # for longer than idle_threshold seconds. + # Set to 0 to disable. + # A client can set the 'transient' hint to bypass this. See the rules + # section for how to disable this if necessary + idle_threshold = 120 + + ### Text ### + + font = Monospace 8 + + # The spacing between lines. If the height is smaller than the + # font height, it will get raised to the font height. + line_height = 0 + + # Possible values are: + # full: Allow a small subset of html markup in notifications: + # bold + # italic + # strikethrough + # underline + # + # For a complete reference see + # . + # + # strip: This setting is provided for compatibility with some broken + # clients that send markup even though it's not enabled on the + # server. Dunst will try to strip the markup but the parsing is + # simplistic so using this option outside of matching rules for + # specific applications *IS GREATLY DISCOURAGED*. + # + # no: Disable markup parsing, incoming notifications will be treated as + # plain text. Dunst will not advertise that it has the body-markup + # capability if this is set as a global setting. + # + # It's important to note that markup inside the format option will be parsed + # regardless of what this is set to. + markup = full + + # The format of the message. Possible variables are: + # %a appname + # %s summary + # %b body + # %i iconname (including its path) + # %I iconname (without its path) + # %p progress value if set ([ 0%] to [100%]) or nothing + # %n progress value if set without any extra characters + # %% Literal % + # Markup is allowed + # format = "%s\n%b" + format = "%a:\n%s%p\n%b" + + # Alignment of message text. + # Possible values are "left", "center" and "right". + alignment = left + + # Vertical alignment of message text and icon. + # Possible values are "top", "center" and "bottom". + vertical_alignment = top + + # Show age of message if message is older than show_age_threshold + # seconds. + # Set to -1 to disable. + show_age_threshold = 60 + + # Split notifications into multiple lines if they don't fit into + # geometry. + word_wrap = yes + + # When word_wrap is set to no, specify where to make an ellipsis in long lines. + # Possible values are "start", "middle" and "end". + ellipsize = middle + + # Ignore newlines '\n' in notifications. + ignore_newline = no + + # Stack together notifications with the same content + stack_duplicates = true + + # Hide the count of stacked notifications with the same content + hide_duplicate_count = false + + # Display indicators for URLs (U) and actions (A). + show_indicators = yes + + ### Icons ### + + # Align icons left/right/off + icon_position = left + + # Scale small icons up to this size, set to 0 to disable. Helpful + # for e.g. small files or high-dpi screens. In case of conflict, + # max_icon_size takes precedence over this. + min_icon_size = 0 + + # Scale larger icons down to this size, set to 0 to disable + max_icon_size = 128 + + # Paths to default icons. + icon_path = /usr/share/icons/gnome/32x32/status/:/usr/share/icons/gnome/32x32/devices/:/usr/share/icons/gnome/32x32/actions:/usr/share/icons/gnome/32x32/animations:/usr/share/icons/gnome/32x32/apps:/usr/share/icons/gnome/32x32/categories:/usr/share/icons/gnome/32x32/emblems:/usr/share/icons/gnome/32x32/emotes:/usr/share/icons/gnome/32x32/places + + ### History ### + + # Should a notification popped up from history be sticky or timeout + # as if it would normally do. + sticky_history = yes + + # Maximum amount of notifications kept in history + history_length = 20 + + ### Misc/Advanced ### + + # dmenu path. + dmenu = /usr/bin/dmenu -p dunst: + + # Browser for opening urls in context menu. + browser = /usr/bin/firefox -new-tab + + # Always run rule-defined scripts, even if the notification is suppressed + always_run_script = true + + # Define the title of the windows spawned by dunst + title = Dunst + + # Define the class of the windows spawned by dunst + class = Dunst + + # Print a notification on startup. + # This is mainly for error detection, since dbus (re-)starts dunst + # automatically after a crash. + startup_notification = false + + # Manage dunst's desire for talking + # Can be one of the following values: + # crit: Critical features. Dunst aborts + # warn: Only non-fatal warnings + # mesg: Important Messages + # info: all unimportant stuff + # debug: all less than unimportant stuff + verbosity = mesg + + # Define the corner radius of the notification window + # in pixel size. If the radius is 0, you have no rounded + # corners. + # The radius will be automatically lowered if it exceeds half of the + # notification height to avoid clipping text and/or icons. + corner_radius = 0 + + # Ignore the dbus closeNotification message. + # Useful to enforce the timeout set by dunst configuration. Without this + # parameter, an application may close the notification sent before the + # user defined timeout. + ignore_dbusclose = false + + ### Legacy + + # Use the Xinerama extension instead of RandR for multi-monitor support. + # This setting is provided for compatibility with older nVidia drivers that + # do not support RandR and using it on systems that support RandR is highly + # discouraged. + # + # By enabling this setting dunst will not be able to detect when a monitor + # is connected or disconnected which might break follow mode if the screen + # layout changes. + force_xinerama = false + + ### mouse + + # Defines list of actions for each mouse event + # Possible values are: + # * none: Don't do anything. + # * do_action: If the notification has exactly one action, or one is marked as default, + # invoke it. If there are multiple and no default, open the context menu. + # * close_current: Close current notification. + # * close_all: Close all notifications. + # These values can be strung together for each mouse event, and + # will be executed in sequence. + mouse_left_click = close_current + mouse_middle_click = do_action, close_current + mouse_right_click = close_all + +# Experimental features that may or may not work correctly. Do not expect them +# to have a consistent behaviour across releases. +[experimental] + # Calculate the dpi to use on a per-monitor basis. + # If this setting is enabled the Xft.dpi value will be ignored and instead + # dunst will attempt to calculate an appropriate dpi value for each monitor + # using the resolution and physical size. This might be useful in setups + # where there are multiple screens with very different dpi values. + per_monitor_dpi = false + +[shortcuts] + + # Shortcuts are specified as [modifier+][modifier+]...key + # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", + # "mod3" and "mod4" (windows-key). + # Xev might be helpful to find names for keys. + + # Close notification. + close = ctrl+space + + # Close all notifications. + close_all = ctrl+shift+space + + # Redisplay last message(s). + # On the US keyboard layout "grave" is normally above TAB and left + # of "1". Make sure this key actually exists on your keyboard layout, + # e.g. check output of 'xmodmap -pke' + history = ctrl+grave + + # Context menu. + context = ctrl+shift+period + +[urgency_low] + # IMPORTANT: colors have to be defined in quotation marks. + # Otherwise the "#" and following would be interpreted as a comment. + background = "#222222" + foreground = "#888888" + timeout = 10 + # Icon for notifications with low urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_normal] + background = "#285577" + foreground = "#ffffff" + timeout = 10 + # Icon for notifications with normal urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_critical] + background = "#900000" + foreground = "#ffffff" + frame_color = "#ff0000" + timeout = 0 + # Icon for notifications with critical urgency, uncomment to enable + #icon = /path/to/icon + +# Every section that isn't one of the above is interpreted as a rules to +# override settings for certain messages. +# +# Messages can be matched by +# appname (discouraged, see desktop_entry) +# body +# category +# desktop_entry +# icon +# match_transient +# msg_urgency +# stack_tag +# summary +# +# and you can override the +# background +# foreground +# format +# frame_color +# fullscreen +# new_icon +# set_stack_tag +# set_transient +# timeout +# urgency +# +# Shell-like globbing will get expanded. +# +# Instead of the appname filter, it's recommended to use the desktop_entry filter. +# GLib based applications export their desktop-entry name. In comparison to the appname, +# the desktop-entry won't get localized. +# +# SCRIPTING +# You can specify a script that gets run when the rule matches by +# setting the "script" option. +# The script will be called as follows: +# script appname summary body icon urgency +# where urgency can be "LOW", "NORMAL" or "CRITICAL". +# +# NOTE: if you don't want a notification to be displayed, set the format +# to "". +# NOTE: It might be helpful to run dunst -print in a terminal in order +# to find fitting options for rules. + +# Disable the transient hint so that idle_threshold cannot be bypassed from the +# client +#[transient_disable] +# match_transient = yes +# set_transient = no +# +# Make the handling of transient notifications more strict by making them not +# be placed in history. +#[transient_history_ignore] +# match_transient = yes +# history_ignore = yes + +# fullscreen values +# show: show the notifications, regardless if there is a fullscreen window opened +# delay: displays the new notification, if there is no fullscreen window active +# If the notification is already drawn, it won't get undrawn. +# pushback: same as delay, but when switching into fullscreen, the notification will get +# withdrawn from screen again and will get delayed like a new notification +#[fullscreen_delay_everything] +# fullscreen = delay +#[fullscreen_show_critical] +# msg_urgency = critical +# fullscreen = show + +#[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" +# +# vim: ft=cfg diff --git a/bash/.config/i3/config b/bash/.config/i3/config new file mode 100644 index 0000000..2df0eb4 --- /dev/null +++ b/bash/.config/i3/config @@ -0,0 +1,233 @@ +# This file has been auto-generated by i3-config-wizard(1). +# It will not be overwritten, so edit it as you like. +# +# Should you change your keyboard layout some time, delete +# this file and re-run i3-config-wizard(1). +# + +# i3 config file (v4) +# +# Please see https://i3wm.org/docs/userguide.html for a complete reference! + +set $mod Mod4 + +# Font for window titles. Will also be used by the bar unless a different font +# is used in the bar {} block below. +font pango:monospace 8 + +# This font is widely installed, provides lots of unicode glyphs, right-to-left +# text rendering and scalability on retina/hidpi displays (thanks to pango). +#font pango:DejaVu Sans Mono 8 + +# The combination of xss-lock, nm-applet and pactl is a popular choice, so +# they are included here as an example. Modify as you see fit. + +# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the +# screen before suspend. Use loginctl lock-session to lock your screen. +exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork + +# NetworkManager is the most popular way to manage wireless networks on Linux, +# and nm-applet is a desktop environment-independent system tray GUI for it. +exec --no-startup-id nm-applet + + +## Colours: https://i3wm.org/docs/userguide.html#_changing_colors +# class border backgr. text indicator child_border +client.focused #4c7899 #285577 #ffffff #2e9ef4 #285577 +client.focused_inactive #333333 #5f676a #ffffff #484e50 #5f676a +client.unfocused #333333 #222222 #888888 #292d2e #222222 +client.urgent #2f343a #900000 #ffffff #900000 #900000 +client.placeholder #000000 #0c0c0c #ffffff #000000 #0c0c0c + +client.background #ffffff +## Borders: https://i3wm.org/docs/userguide.html#_default_border_style_for_new_windows +default_border pixel 3 +for_window [class=".*"] border pixel 3 + + +# Use pactl to adjust volume in PulseAudio. +set $refresh_i3status killall -SIGUSR1 i3status +bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status +bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status +bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status +bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status +bindsym $mod+Shift+p exec pulsemixer + +# Use Mouse+$mod to drag floating windows to their wanted position +floating_modifier $mod + +# start a terminal +# bindsym $mod+Return exec i3-sensible-terminal +bindsym $mod+Return exec xfce4-terminal + +# kill focused window +bindsym $mod+Shift+q kill + +# start dmenu (a program launcher) +bindsym $mod+d exec dmenu_run +bindsym $mod+space exec dmenu_run +# There also is the (new) i3-dmenu-desktop which only displays applications +# shipping a .desktop file. It is a wrapper around dmenu, so you need that +# installed. +# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop + +# change focus +bindsym $mod+j focus left +bindsym $mod+k focus down +bindsym $mod+l focus up +bindsym $mod+semicolon focus right + +# alternatively, you can use the cursor keys: +bindsym $mod+Left focus left +bindsym $mod+Down focus down +bindsym $mod+Up focus up +bindsym $mod+Right focus right + +# move focused window +bindsym $mod+Shift+j move left +bindsym $mod+Shift+k move down +bindsym $mod+Shift+l move up +bindsym $mod+Shift+semicolon move right + +# alternatively, you can use the cursor keys: +bindsym $mod+Shift+Left move left +bindsym $mod+Shift+Down move down +bindsym $mod+Shift+Up move up +bindsym $mod+Shift+Right move right + +# split in horizontal orientation +bindsym $mod+h split h + +# split in vertical orientation +bindsym $mod+v split v + +# enter fullscreen mode for the focused container +bindsym $mod+f fullscreen toggle + +# change container layout (stacked, tabbed, toggle split) +bindsym $mod+s layout stacking +bindsym $mod+w layout tabbed +bindsym $mod+e layout toggle split + +# toggle tiling / floating +bindsym $mod+Shift+space floating toggle + +# change focus between tiling / floating windows +# bindsym $mod+space focus mode_toggle + +# focus the parent container +bindsym $mod+a focus parent + +# focus the child container +#bindsym $mod+d focus child + +# Define names for default workspaces for which we configure key bindings later on. +# We use variables to avoid repeating the names in multiple places. +set $ws1 "1 - Work/Calls" +set $ws2 "2 - Presentation" +set $ws3 "3 - Browser" +set $ws4 "4" +set $ws5 "5" +set $ws6 "6" +set $ws7 "7" +set $ws8 "8" +set $ws9 "9" +set $ws10 "10" + +# switch to workspace +bindsym $mod+1 workspace $ws1 +bindsym $mod+2 workspace $ws2 +bindsym $mod+3 workspace $ws3 +bindsym $mod+4 workspace number $ws4 +bindsym $mod+5 workspace number $ws5 +bindsym $mod+6 workspace number $ws6 +bindsym $mod+7 workspace number $ws7 +bindsym $mod+8 workspace number $ws8 +bindsym $mod+9 workspace number $ws9 +bindsym $mod+0 workspace number $ws10 + +# move focused container to workspace +bindsym $mod+Shift+1 move container to workspace $ws1 +bindsym $mod+Shift+2 move container to workspace $ws2 +bindsym $mod+Shift+3 move container to workspace $ws3 +bindsym $mod+Shift+4 move container to workspace number $ws4 +bindsym $mod+Shift+5 move container to workspace number $ws5 +bindsym $mod+Shift+6 move container to workspace number $ws6 +bindsym $mod+Shift+7 move container to workspace number $ws7 +bindsym $mod+Shift+8 move container to workspace number $ws8 +bindsym $mod+Shift+9 move container to workspace number $ws9 +bindsym $mod+Shift+0 move container to workspace number $ws10 + +# Change display. +bindsym $mod+F4 exec "~/.screenlayout/single_monitor_4k.sh" +bindsym $mod+F5 exec "~/.screenlayout/single_monitor_3_splits_4k.sh" + +# reload the configuration file +bindsym $mod+Shift+c reload +# restart i3 inplace (preserves your layout/session, can be used to upgrade i3) +bindsym $mod+Shift+r restart +# exit i3 (logs you out of your X session) +bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'" +# lock screen +bindsym $mod+Ctrl+l exec i3lock --color=#111111 -f + +# resize window (you can also use the mouse for that) +mode "resize" { + # These bindings trigger as soon as you enter the resize mode + + # Pressing left will shrink the window’s width. + # Pressing right will grow the window’s width. + # Pressing up will shrink the window’s height. + # Pressing down will grow the window’s height. + bindsym j resize shrink width 10 px or 10 ppt + bindsym k resize grow height 10 px or 10 ppt + bindsym l resize shrink height 10 px or 10 ppt + bindsym semicolon resize grow width 10 px or 10 ppt + + # same bindings, but for the arrow keys + bindsym Left resize shrink width 10 px or 10 ppt + bindsym Down resize grow height 10 px or 10 ppt + bindsym Up resize shrink height 10 px or 10 ppt + bindsym Right resize grow width 10 px or 10 ppt + + # back to normal: Enter or Escape or $mod+r + bindsym Return mode "default" + bindsym Escape mode "default" + bindsym $mod+r mode "default" +} + +bindsym $mod+r mode "resize" +bindsym $mod+u resize shrink width 10 px or 10 ppt +bindsym $mod+i resize grow height 10 px or 10 ppt +bindsym $mod+o resize shrink height 10 px or 10 ppt +bindsym $mod+p resize grow width 10 px or 10 ppt + +# Start i3bar to display a workspace bar (plus the system information i3status +# finds out, if available) +exec ~/.config/i3/write_status.sh +bar { +# status_command i3status + status_command i3status --config ~/.config/i3/i3-status.config +} + +## https://i3wm.org/docs/layout-saving.html +exec --no-startup-id "i3-msg 'workspace 1; append_layout ~/.config/i3/workspace-1_edited.json'" +# exec xfce4-terminal +exec "tmux attach || ~/./dev-tmux" +# Sleep to avoid the first tmux window being stuck at a tiny window inside the +# tmux pane. +exec sleep 1; xfce4-terminal -e "tmux attach" +# This works with other terminals, but working around by calling outside of terminal: +# exec uxterm -e "tmux attach || ~/./dev-tmux" +exec sleep 1; opera +exec --no-startup-id teams + +## get class names from `xprop` and then clicking on a window. +# assign [class="Xfce4-terminal"] $ws1 +# assign [class="Opera"] $ws1 +# assign [class="Microsoft Teams - Preview"] $ws1 + +## Note: Teams titles, still floats the main app, where the aim was to just +## float pop-out message windows. +# for_window [ title="" ] floating enable # Float by `WM_NAME`. +# for_window [ class="" instance="" ] floating enable # Float by `WM_CLASS`. \ No newline at end of file diff --git a/bash/.config/i3/i3-status.config b/bash/.config/i3/i3-status.config new file mode 100755 index 0000000..6c64f6c --- /dev/null +++ b/bash/.config/i3/i3-status.config @@ -0,0 +1,85 @@ +general { + colors = true + interval = 5 +} + +order += "read_file TODOORG" +order += "read_file SPOTIFYD" +# order += "read_file BRIGHTNESS" +order += "volume master" +order += "cpu_usage" +order += "disk /" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery all" +order += "memory" +order += "load" +order += "tztime local" + +read_file TODOORG { + format = "TODO %content" + path = "/tmp/i3/status/todo_org" +} + +read_file SPOTIFYD { + format = "%content" + path = "/tmp/i3/status/spotifyd" +} + +volume master { + format = "VOL %volume" + format_muted = "VOL muted" + device = "default" + mixer = "Master" + mixer_idx = 0 +} + +read_file BRIGHTNESS { + format = "BRI %content%" + path = "~/.config/brightness" + max_characters = 5 +} + +cpu_usage { + format= "CPU %usage <%cpu0 %cpu1>" + max_threshold= 75 +} + +wireless _first_ { + format_up = "W (%quality at %essid, %bitrate) %ip" + format_down = "" +} + +ethernet _first_ { + format_up = "E %ip (%speed)" + format_down = "" +} + +battery all { + format = "%status %percentage %remaining %emptytime" + format_down = "" + status_chr = "CHR" + status_bat = "BAT" + status_unk = "UNK" + status_full = "FULL" + path = "/sys/class/power_supply/BAT%d/uevent" + low_threshold = 10 +} + +tztime local { + format = "%Y-%m-%d %H:%M" +} + +load { + format = "%1min %5min %15min" +} + +memory { + format = "MEM %percentage_used" + threshold_degraded = "10%" + format_degraded = "MEMORY: %free" +} + +disk "/" { + format = "HDD %percentage_used" +} \ No newline at end of file diff --git a/bash/.config/i3/workspace-1.json b/bash/.config/i3/workspace-1.json new file mode 100644 index 0000000..69e2456 --- /dev/null +++ b/bash/.config/i3/workspace-1.json @@ -0,0 +1,88 @@ +// vim:ts=4:sw=4:et +{ + // tabbed split container with 1 children + "border": "pixel", + "floating": "auto_off", + "layout": "tabbed", + "percent": 0.5, + "type": "con", + "nodes": [ + { + // splitv split container with 2 children + "border": "pixel", + "floating": "auto_off", + "layout": "splitv", + "percent": 1, + "type": "con", + "nodes": [ + { + "border": "pixel", + "current_border_width": 3, + "floating": "auto_off", + "geometry": { + "height": 2135, + "width": 1274, + "x": 2563, + "y": 3 + }, + "name": "Architecture (Engineering) | Microsoft Teams", + "percent": 0.5, + "swallows": [ + { + // "class": "^Microsoft\\ Teams\\ \\-\\ Preview$", + // "instance": "^microsoft\\ teams\\ \\-\\ preview$", + // "title": "^Architecture\\ \\(Engineering\\)\\ \\|\\ Microsoft\\ Teams$", + // "window_role": "^browser\\-window$" + } + ], + "type": "con" + }, + { + "border": "pixel", + "current_border_width": 3, + "floating": "auto_off", + "geometry": { + "height": 410, + "width": 654, + "x": 0, + "y": 0 + }, + "name": "Terminal - ", + "percent": 0.5, + "swallows": [ + { + // "class": "^Xfce4\\-terminal$", + // "instance": "^xfce4\\-terminal$", + // "title": "^Terminal\\ \\-\\ $", + // "window_role": "^xfce4\\-terminal\\-1606900076\\-2691167715$" + } + ], + "type": "con" + } + ] + } + ] +} + +{ + "border": "pixel", + "current_border_width": 3, + "floating": "auto_off", + "geometry": { + "height": 2135, + "width": 1914, + "x": 1923, + "y": 3 + }, + "name": "i3: Layout saving in i3 - Opera", + "percent": 0.5, + "swallows": [ + { + // "class": "^Opera$", + // "instance": "^Opera$", + // "title": "^i3\\:\\ Layout\\ saving\\ in\\ i3\\ \\-\\ Opera$" + } + ], + "type": "con" +} + diff --git a/bash/.config/i3/workspace-1_edited.json b/bash/.config/i3/workspace-1_edited.json new file mode 100644 index 0000000..4564c91 --- /dev/null +++ b/bash/.config/i3/workspace-1_edited.json @@ -0,0 +1,81 @@ +{ + "border": "pixel", + "floating": "auto_off", + "layout": "tabbed", + "percent": 0.5, + "type": "con", + "nodes": [ + { + "border": "pixel", + "floating": "auto_off", + "layout": "splitv", + "percent": 1, + "type": "con", + "nodes": [ + { + "border": "pixel", + "current_border_width": 3, + "floating": "auto_off", + "geometry": { + "height": 2135, + "width": 1274, + "x": 2563, + "y": 3 + }, + "name": "Architecture (Engineering) | Microsoft Teams", + "percent": 0.5, + "swallows": [ + { + "class": "^Microsoft\\ Teams\\ \\-\\ Preview$", + "instance": "^microsoft\\ teams\\ \\-\\ preview$", + "title": "^Chat\\ \\|\\ Microsoft\\ Teams$" + } + ], + "type": "con" + }, + { + "border": "pixel", + "current_border_width": 3, + "floating": "auto_off", + "geometry": { + "height": 410, + "width": 654, + "x": 0, + "y": 0 + }, + "name": "Terminal - ", + "percent": 0.5, + "swallows": [ + { + "class": "^Xfce4\\-terminal$", + "instance": "^xfce4\\-terminal$" + } + ], + "type": "con" + } + ] + } + ] +} + +{ + "border": "pixel", + "current_border_width": 3, + "floating": "auto_off", + "geometry": { + "height": 2135, + "width": 1914, + "x": 1923, + "y": 3 + }, + "name": "i3: Layout saving in i3 - Opera", + "percent": 0.5, + "swallows": [ + { + "class": "^Opera$", + "instance": "^Opera$" + } + ], + "type": "con" +} + diff --git a/bash/.config/spotifyd/notifications.sh b/bash/.config/spotifyd/notifications.sh new file mode 100755 index 0000000..03e0b02 --- /dev/null +++ b/bash/.config/spotifyd/notifications.sh @@ -0,0 +1,20 @@ +#!/bin/bash +# https://github.com/Spotifyd/spotifyd/wiki/User-supplied-scripts +mkdir -p /tmp/i3/status +if [ "$PLAYER_EVENT" = "start" ] || [ "$PLAYER_EVENT" = "change" ]; +then + trackName=$(playerctl metadata title) + artist=$(playerctl metadata artist) + album=$(playerctl metadata album) + artistAndAlbumName=$(playerctl metadata --format "{{ artist }} ({{ album }})") + track_number=$(playerctl metadata | grep trackNumber |awk '{print $3}') + url=$(playerctl metadata | grep url |awk '{print $3}') + art_url=$(playerctl metadata | grep artUrl |awk '{print $3}') + wget -O /tmp/art $art_url + + # https://askubuntu.com/questions/189231/where-are-the-stock-icon-names-defined-for-the-unity-panel-service-indicators-an + notify-send -a spotifyd -i /tmp/art -c applications-multimedia -u low \ + "Track: $track_number $trackName" \ + "Artist: $artist\nAlbum: $album\nUrl: $url" + echo "$trackName - $artistAndAlbumName" > /tmp/i3/status/spotifyd +fi diff --git a/bash/.screenlayout/single_monitor_3_splits_4k.sh b/bash/.screenlayout/single_monitor_3_splits_4k.sh new file mode 100755 index 0000000..bc2fc0f --- /dev/null +++ b/bash/.screenlayout/single_monitor_3_splits_4k.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# xrandr --output DP1 --primary --mode 3840x2160 --pos 0x0 --rotate normal --output DP2 --off --output DP3 --off --output HDMI1 --off --output HDMI2 --off --output HDMI3 --off --output VIRTUAL1 --off +# DP1 connected primary 3840x2160+0+0 (normal left inverted right x axis y axis) 610mm x 350mm + +# https://mrwaggel.be/post/xrandr-virtual-splitscreen-cookbook/ + +# Delete pre-existing virtual monitors. +for x in $(xrandr --listmonitors); do xrandr --delmonitor $x;done +# Setting a 3 screen (2x1) virtual monitor. +xrandr --setmonitor VIRT-LEFT-TOP 1920/305x1080/175+0+0 DP1 +xrandr --setmonitor VIRT-LEFT-BOT 1920/305x1080/175+0+1080 none +xrandr --setmonitor VIRT-RIGHT 1920/305x2160/350+1920+0 none +# Toggle the frame buffer to make it refresh to the new display. +xrandr --fb 3840x2161; xrandr --fb 3840x2160 diff --git a/bash/.screenlayout/single_monitor_4k.sh b/bash/.screenlayout/single_monitor_4k.sh new file mode 100755 index 0000000..0a59c43 --- /dev/null +++ b/bash/.screenlayout/single_monitor_4k.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# https://mrwaggel.be/post/xrandr-virtual-splitscreen-cookbook/ + +# Delete pre-existing virtual monitors. +for x in $(xrandr --listmonitors); do xrandr --delmonitor $x;done +# Setting a single DP1 attached 4K screen. +xrandr --output DP1 --primary --mode 3840x2160 --pos 0x0 --rotate normal --output DP2 --off --output DP3 --off --output HDMI1 --off --output HDMI2 --off --output HDMI3 --off --output VIRTUAL1 --off +# Toggle the frame buffer to make it refresh to the new display. +xrandr --fb 3840x2161; xrandr --fb 3840x2160 diff --git a/bash/i3.yml b/bash/i3.yml new file mode 100644 index 0000000..f93f4e1 --- /dev/null +++ b/bash/i3.yml @@ -0,0 +1,36 @@ +--- +- name: Running the i3 ansible playbook... + hosts: localhost + tasks: + - name: Symlink i3 config directories to ~/.config/ + file: + src: '{{playbook_dir}}/.config/{{item}}' + dest: '~/.config/{{item}}' + state: link + force: yes + with_items: + - i3 + - dunst + tags: + - i3 + + - name: Install i3 packages + become: true + become_method: sudo + pacman: + name: + - i3-wm # Tiling Window Manager. + - i3lock # lockscreen + - i3-scrot # screenshots + - i3status # https://github.com/i3/i3status # i3bar status area. + - dunst # https://wiki.archlinux.org/index.php/Dunst # notifications. + state: latest + tags: + - i3 + + - name: Install i3 AUR dependencies + aur: name="{{item}}" tool=yaourt update=yes + with_items: + - perl-anyevent-i3 # Needed for `i3-save-tree` to work. + tags: + - i3 diff --git a/main.yml b/main.yml index 9d18fb2..bf84e40 100644 --- a/main.yml +++ b/main.yml @@ -7,6 +7,7 @@ #- import_playbook: bash/spectrwm.yml # Experimenting with windows managers. #- import_playbook: bash/gnome.yml # Removed in favour of XFCE4. - import_playbook: bash/xfce4.yml +- import_playbook: bash/i3.yml - import_playbook: bash/steam.yml - import_playbook: web/web.yml - import_playbook: music/music.yml