Browse Source

remove points feature

pull/1/head
parent
commit
a2fd8de5b2
4 changed files with 2 additions and 18 deletions
  1. +0
    -1
      tasks/main.yaml
  2. +0
    -7
      tasks/points.yaml
  3. +2
    -7
      templates/i3/i3.config.j2
  4. +0
    -3
      vars/main.yaml

+ 0
- 1
tasks/main.yaml View File

@@ -12,7 +12,6 @@

- import_tasks: kanboard.yaml

- import_tasks: points.yaml

- block:
- import_tasks: i3.yaml


+ 0
- 7
tasks/points.yaml View File

@@ -1,7 +0,0 @@
---

- name: points counter
copy:
content: 0
dest: ~/.points
force: no

+ 2
- 7
templates/i3/i3.config.j2 View File

@@ -103,12 +103,6 @@ bindsym $mod+f fullscreen
bindsym $mod+r mode resize
bindsym $mod+x exec {{i3_exec_command_prefix}} xkill

# points
bindsym $mod+minus exec {{points_down_command}}
bindsym $mod+plus exec {{points_up_command}}
bindsym $mod+KP_Subtract exec {{points_down_command}}
bindsym $mod+KP_Add exec {{points_up_command}}

# free keys
# $mod+i
# $mod+j
@@ -131,7 +125,8 @@ bindsym $mod+KP_Add exec {{points_up_command}}
# $mod+Insert
# $mod+Print
# $mod+Scroll_Lock

# $mod+minus
# $mod+plus

## stuff that is available in default and remote mode
{% macro overall() %}


+ 0
- 3
vars/main.yaml View File

@@ -127,9 +127,6 @@ i3_letter_workspace_keymaps:
- keysym: ssharp
workspace: 52:ß

points_up_command: fish -c "echo (expr (cat ~/.points) + 1 > ~/.points) (rofi -m (cat ~/.points)\ Ω)"
points_down_command: fish -c "echo (expr (cat ~/.points) - 1 > ~/.points) (rofi -m (cat ~/.points)\ Ω)"

background_image_path: ~/.backgrounds/{{background_image|basename}}
background_command: feh --no-fehbg --bg-fill {{background_image_path}}