This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bootstrap-inspired styles for the pagination links that | |
// Laravel dynamically generates in views. | |
// @author: Eric Davis | |
.pagination { | |
li { | |
display: inline-block; | |
float: left; | |
font-size: 1.1rem; | |
color: #2196f3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
flag=true | |
while [ "$flag" == true ]; do | |
xinput --list | |
echo "##################################################" | |
echo "Select the ID of your input device:" | |
read input_device |
OlderNewer